Skip to content
Snippets Groups Projects
Commit 26901736 authored by Stefan Sperling's avatar Stefan Sperling Committed by Phabricator Migration user
Browse files

Generated commit for differential D6382

parent 5003c8e9
No related tags found
1 merge request!146Draft: make "yarn install" non-fatal in swh-web entrypoint
......@@ -9,7 +9,9 @@ setup_pgsql
if [[ -d /src/swh-web ]] ; then
echo "Install and compile swh-web static assets"
pushd /src/swh-web
yarn install --frozen-lockfile
if ! yarn install --frozen-lockfile; then
echo "warning: Could not rebuild swh-web static assets"
fi
# execute webpack-dev-server in background
yarn start-dev&
popd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment