mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 00:04:30 -05:00
Fix unescaped line break in git
output
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
3175fe18b2
commit
8b69ac1bcf
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ exports.toIntegerConfig = function toIntegerConfig (configValue) {
|
||||||
exports.getGitCommit = function getGitCommit (repodir) {
|
exports.getGitCommit = function getGitCommit (repodir) {
|
||||||
try {
|
try {
|
||||||
// prefer using git to get the current ref, as poking in .git is very fragile
|
// prefer using git to get the current ref, as poking in .git is very fragile
|
||||||
return require('child_process').execSync('git rev-parse HEAD')
|
return require('child_process').execSync('git rev-parse HEAD').replace('\n', '')
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// there was an error running git, try to parse refs ourselves
|
// there was an error running git, try to parse refs ourselves
|
||||||
if (!fs.existsSync(repodir + '/.git/HEAD')) {
|
if (!fs.existsSync(repodir + '/.git/HEAD')) {
|
||||||
|
|
Loading…
Reference in a new issue