mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-09 20:52:39 +01:00
Fix npm build with missing .git
This commit is contained in:
parent
d2746db969
commit
d40ddc3d3b
@ -1,6 +1,14 @@
|
||||
const commit = require('git-rev-sync').short();
|
||||
const gitRevSync = require('git-rev-sync');
|
||||
const pkg = require('../package.json');
|
||||
|
||||
let commit = 'unknown';
|
||||
|
||||
try {
|
||||
commit = gitRevSync.short();
|
||||
} catch (e) {
|
||||
console.warn('Error fetching current git commit: ' + e);
|
||||
}
|
||||
|
||||
const version = JSON.stringify({
|
||||
commit,
|
||||
source: pkg.homepage,
|
||||
|
Loading…
Reference in New Issue
Block a user