diff options
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index e4a67306..8cad40e2 100644 --- a/build.gradle +++ b/build.gradle @@ -35,9 +35,9 @@ task npmInstall(type: Exec) { inputs.file('package-lock.json') outputs.file('package-lock.json') if (DefaultNativePlatform.getCurrentOperatingSystem().isWindows()) { - commandLine 'cmd', '/c', 'npm', 'install' + commandLine 'cmd', '/c', 'npm', 'ci' } else { - commandLine 'npm', 'install' + commandLine 'npm', 'ci' } } |