crabatool 1.0.860 → 1.0.861
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utils.js +1 -1
- package/package.json +1 -1
package/lib/utils.js
CHANGED
|
@@ -986,7 +986,7 @@ class Utils {
|
|
|
986
986
|
|
|
987
987
|
console.log('git commit -m "' + msg + '"'); // 提交日志
|
|
988
988
|
//execSync('git commit -m "' + msg + '"', { cwd: webPath }); // 提交日志
|
|
989
|
-
execFileSync('git', ['commit', '-m', msg]);
|
|
989
|
+
execFileSync('git', ['commit', '-m', msg], { cwd: webPath });
|
|
990
990
|
|
|
991
991
|
|
|
992
992
|
//console.log('git pull --rebase origin ' + branchName); // 拉取分支
|