Explorar el Código

Change CI var env to JENKINS_CI

Shalom Yerushalmy hace 6 años
padre
commit
522e53ef28
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js Ver fichero

@@ -15,7 +15,7 @@ function execSyncSilently(cmd) {
15 15
 }
16 16
 
17 17
 function validateEnv() {
18
-  if (!process.env.CI) {
18
+  if (!process.env.JENKINS_CI) {
19 19
     throw new Error(`releasing is only available from CI`);
20 20
   }
21 21