More fixes

This commit is contained in:
Bryan Ashby 2018-11-10 18:46:43 -07:00
parent 6c50b640db
commit 713329b5d3
1 changed files with 3 additions and 3 deletions

View File

@ -86,14 +86,14 @@ download_enigma_source() {
is_arch_arm() {
local ARCH=`arch`
if [[ $ARCH == "arm"* ]]; then
return 1
true
else
return 0
false
fi
}
extra_npm_install_args() {
if is_arch_arm; then
if is_arch_arm ; then
echo "--build-from-source"
else
echo ""