From de9832889e5bbfd82bd0720ccb9a1d42357c957e Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 9 Aug 2018 13:17:20 -0700 Subject: [PATCH] Make gulp setup idempotent --- packages/grpc-health-check/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grpc-health-check/gulpfile.js b/packages/grpc-health-check/gulpfile.js index 6fcd1804..09ac9115 100644 --- a/packages/grpc-health-check/gulpfile.js +++ b/packages/grpc-health-check/gulpfile.js @@ -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'}); });