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 \
|
||||
@rpath/libkeycard.dylib \
|
||||
bin/nim_status_client
|
||||
ifeq ("$(wildcard ./node_modules/.bin/fileicon)","")
|
||||
echo -e "\033[92mInstalling:\033[39m fileicon"
|
||||
yarn install
|
||||
endif
|
||||
# Install or update package.json files
|
||||
yarn install --check-files
|
||||
endif
|
||||
|
||||
nim_status_client: force-rebuild-status-go $(NIM_STATUS_CLIENT)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"files": [],
|
||||
"devDependencies": {
|
||||
"create-dmg": "status-im/create-dmg#678fbd4",
|
||||
"fileicon": "0.3.0"
|
||||
"fileicon": "0.3.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10",
|
||||
|
|
Loading…
Reference in New Issue