Skip to content

Commit

Permalink
Avoid using make for autobuild; reducing necessary dependencies out o…
Browse files Browse the repository at this point in the history
…f the box.
  • Loading branch information
dannon committed Nov 29, 2018
1 parent 2620367 commit be43693
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions scripts/common_startup.sh
Expand Up @@ -241,10 +241,16 @@ if [ $SKIP_CLIENT_BUILD -eq 0 ]; then
fi

# Build client
if ! make client-production-maps; then
echo "ERROR: Galaxy client build failed. See ./client/README.md for more information, including how to get help."
exit 1
pushd client
if yarn install --network-timeout 120000 --check-files; then
if ! yarn run build-production-maps; then
echo "ERROR: Galaxy client build failed. See ./client/README.md for more information, including how to get help."
exit 1
fi
else
echo "ERROR: Galaxy client dependency installation failed. See ./client/README.md for more information, including how to get help."
fi
popd
else
echo "Regenerating static plugin directories."
python ./scripts/plugin_staging.py
Expand Down

0 comments on commit be43693

Please sign in to comment.