Skip to content

Commit 37020f5

Browse files
authored
Merge pull request #21 from xnivaxhzne/bugfix-gsf
Chain the commands of gsf
2 parents cc90869 + 12bc167 commit 37020f5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/git_see_feature_files/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ const main = async () => {
2222
}
2323

2424
if (featureBranch) {
25-
runCommand("gcm");
26-
runCommand("gpm");
27-
runCommand(`git merge --no-commit --no-ff origin/${featureBranch}`);
25+
runCommand(`gcpm && git merge --no-commit --no-ff origin/${featureBranch}`);
2826
} else {
2927
process.exit(0);
3028
}

0 commit comments

Comments
 (0)