Commit 1ae719df authored by Jeremy Bokobza's avatar Jeremy Bokobza

fixed os platform

parent dceadb6c
......@@ -60,7 +60,13 @@ npm run build:prod
# node packaging
echo $log_prefix packaging breeze
npx electron-builder build --$TRAVIS_OS_NAME --$arch
if [ "$TRAVIS_OS_NAME" = "osx" ]
then
npx electron-builder build --mac --$arch
else
npx electron-builder build --linux --$arch
fi
echo $log_prefix finished packaging
#tests
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment