Browse Source

Version Bump

Jason Crist 3 năm trước cách đây
mục cha
commit
0fa0fe59e8
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      theme-utils.mjs

+ 2 - 2
theme-utils.mjs

@@ -346,7 +346,7 @@ async function versionBumpThemes() {
 		await executeCommand(`npm version patch --no-git-tag-version`);
 	}
 
-	if (versionBumpCount > 0 || rootHasVersionBump) {
+	if (versionBumpCount > 0 || !rootHasVersionBump) {
 		console.log('commiting version-bump');
 		await executeCommand(`
 			git commit -a -m "Version Bump";
@@ -635,7 +635,7 @@ async function createGitPhabricatorDiff(hash) {
 		git branch -D deploy
 		git checkout -b deploy
 		git add --all
-		git commit -m "${commitMessage}" --no-verify
+		git commit -m "${commitMessage}"
 		arc diff --create --verbatim
 	`, true);