Make gulp setup idempotent

This commit is contained in:
murgatroid99 2018-08-09 13:17:20 -07:00
parent 61f969a1ba
commit de9832889e
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ gulp.task('clean.links', 'Delete npm links', () => {
gulp.task('clean.all', 'Delete all code created by tasks',
['clean.links']);
gulp.task('install', 'Install health check dependencies', () => {
gulp.task('install', 'Install health check dependencies', ['clean.links'], () => {
return execa('npm', ['install', '--unsafe-perm'], {cwd: healthCheckDir, stdio: 'inherit'});
});