sync.js: Fix command to build the source code without optimizations

Change-Type: patch
Signed-off-by: Pablo Carranza Velez <pablo@resin.io>
This commit is contained in:
Pablo Carranza Velez 2017-11-15 02:49:50 -08:00
parent 685889c5aa
commit bcbd71998e

View File

@ -17,7 +17,7 @@ opts = {
destination: '/usr/src/app/dist',
appName: 'resin_supervisor',
skipGitignore: true,
before: 'npm install && npm run build-no-optimize'
before: 'npm install && npm run build -- --env.noOptimize'
};
doSync(opts);