Skip to content
Snippets Groups Projects
Commit 16adfa46 authored by Cam Saul's avatar Cam Saul
Browse files

don't tell people we're running webpack -p in CI when we're not :scream:

parent c0840a2a
Branches
Tags
No related merge requests found
......@@ -3,10 +3,11 @@
echo "Running 'npm install' to download javascript dependencies..." &&
npm install &&
echo "Running 'webpack -p' to assemble and minify frontend assets..." &&
if [ -n "$CI_DISABLE_WEBPACK_MINIFICATION" ]; then
echo "Running 'webpack' to assemble and minify frontend assets..."
./node_modules/webpack/bin/webpack.js
else
echo "Running 'webpack -p' to assemble and minify frontend assets..."
./node_modules/webpack/bin/webpack.js -p
fi &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment