fix(apply): shelljs API update

This commit is contained in:
Jason Dreyzehner 2018-02-20 15:49:08 -05:00
parent 9eaa2aee35
commit c11193214c
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ var getCommitHash = function() {
var hash = shell.exec('git rev-parse HEAD', {
silent: true
}).output.trim().substr(0, 7);
}).stdout.trim().substr(0, 7);
return hash;
}