File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ arm-brew fetch --deps --bottle-tag=$bottle_tag $dependencies |
31
31
grep -E " .tar.gz" |
32
32
grep -v pkg-config |
33
33
awk ' { print $3 }' |
34
- xargs -n 1 arm-brew reinstall --force-bottle
34
+ xargs -n 1 arm-brew install --force-bottle || true
35
35
36
36
# Install host version of pkg-config so we can call it in the build system
37
- arm-brew reinstall pkg-config
37
+ arm-brew install pkg-config || true
38
38
39
39
# Add the installed binaries/libraries to the path
40
40
export PATH=" $HOME /arm-target/bin/:$PATH "
@@ -44,3 +44,4 @@ export PATH="$HOME/arm-target/lib/:$PATH"
44
44
SODIUM_PATH=$( ~/arm-target/bin/pkg-config libsodium --libs-only-L | sed -e ' s/-L//g' ) # print only -L and replace "-L" itself
45
45
export PATH=" $SODIUM_PATH :$PATH "
46
46
export PKG_CONFIG_PATH=" $SODIUM_PATH :$PKG_CONFIG_PATH "
47
+ export npm_config_target_arch=arm64
You can’t perform that action at this time.
0 commit comments