Browse Source

Fix release script

Shalom Yerushalmy 6 years ago
parent
commit
245b96748f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js View File

48
 }
48
 }
49
 
49
 
50
 function copyNpmRc() {
50
 function copyNpmRc() {
51
-  exec.execSync(`rm -f package-lock.json`);
51
+  execSync(`rm -f package-lock.json`);
52
   const npmrcPath = p.resolve(`${__dirname}/.npmrc`);
52
   const npmrcPath = p.resolve(`${__dirname}/.npmrc`);
53
   execSync(`cp -rf ${npmrcPath} .`);
53
   execSync(`cp -rf ${npmrcPath} .`);
54
 }
54
 }