fix(build) fix python package error on make run on MacOS
Update packages all the time ensuring that a change in package.json will be reflected without manual intervention. The `fileicon` v0.3.0 tool we used on MacOS to embed icons in our binary is failing. Upgrading to latest v0.3.3 fixes this. It will require a `make update` though to fix local builds.
This commit is contained in:
parent
3fd96986da
commit
195cb55e8d
6
Makefile
6
Makefile
|
@ -557,10 +557,8 @@ ifeq ($(detected_OS),Darwin)
|
||||||
libkeycard.dylib \
|
libkeycard.dylib \
|
||||||
@rpath/libkeycard.dylib \
|
@rpath/libkeycard.dylib \
|
||||||
bin/nim_status_client
|
bin/nim_status_client
|
||||||
ifeq ("$(wildcard ./node_modules/.bin/fileicon)","")
|
# Install or update package.json files
|
||||||
echo -e "\033[92mInstalling:\033[39m fileicon"
|
yarn install --check-files
|
||||||
yarn install
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
nim_status_client: force-rebuild-status-go $(NIM_STATUS_CLIENT)
|
nim_status_client: force-rebuild-status-go $(NIM_STATUS_CLIENT)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"files": [],
|
"files": [],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"create-dmg": "status-im/create-dmg#678fbd4",
|
"create-dmg": "status-im/create-dmg#678fbd4",
|
||||||
"fileicon": "0.3.0"
|
"fileicon": "0.3.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10",
|
"node": ">=10",
|
||||||
|
|
Loading…
Reference in New Issue