Skip to content

Commit 3b9f0a6

Browse files
greenkeeperio-botjimthedev
authored andcommitted
Update shelljs to version 0.7.5 🚀 (#372)
* chore(package): update shelljs to version 0.7.5 * fix(cli): fix path resolution ShellJS upgraded to use exec().stdout instead of exec().output. This upgrades our usable to match this new api.
1 parent 7d7b2e3 commit 3b9f0a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"lodash": "4.17.2",
8585
"minimist": "1.2.0",
8686
"path-exists": "2.1.0",
87-
"shelljs": "0.5.3",
87+
"shelljs": "0.7.5",
8888
"strip-json-comments": "2.0.1"
8989
},
9090
"babel": {

src/commitizen/adapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ function resolveAdapterPath(inboundAdapterPath) {
145145
}
146146

147147
function getGitRootPath() {
148-
return sh.exec('git rev-parse --show-toplevel').output.trim();
148+
return sh.exec('git rev-parse --show-toplevel').stdout.trim();
149149
}

0 commit comments

Comments
 (0)