Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
HAWKULAR-254 Fixing quote issue with windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Viliam Rockai committed Jul 31, 2015
1 parent eef979e commit abb7fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/src/main/scripts/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ gulp.task('git-sha', function(cb) {
plugins.git.exec({args: "log -n 1 --pretty='%h'"}, function (err, stdout) {
if (err) throw err;
var gitSha = stdout.slice(0, -1);
jsString = 'var HawkularVersion = \'' + gitSha + '\';';
jsString = 'var HawkularVersion = \"' + gitSha + '\";';
fs.writeFileSync(versionFile, jsString);
cb();
});
Expand Down

0 comments on commit abb7fc8

Please sign in to comment.