Minor cosmetic fixes

This commit is contained in:
Matias Pando 2014-08-28 10:00:18 -03:00
commit 20c78ce130
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ var getCommitHash = function() {
//exec git command to get the hash of the current commit
//git rev-parse HEAD
var hash = shell.exec('git rev-parse HEAD').output.trim().substr(0,10);
var hash = shell.exec('git rev-parse HEAD',{silent:true}).output.trim().substr(0,7);
return hash;
}