fix git branch calculation

This commit is contained in:
dangered wolf 2023-10-15 14:22:00 -04:00
parent 53cee071e3
commit 5e58868567
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -10,7 +10,7 @@ config();
const gitCommit = execSync('git rev-parse --short HEAD').toString().trim(); const gitCommit = execSync('git rev-parse --short HEAD').toString().trim();
const gitCommitFull = execSync('git rev-parse HEAD').toString().trim(); const gitCommitFull = execSync('git rev-parse HEAD').toString().trim();
const gitUrl = execSync('git remote get-url origin').toString().trim(); const gitUrl = execSync('git remote get-url origin').toString().trim();
const gitBranch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim(); const gitBranch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim().replace(/[\\\/]/g, '-');
let workerName = 'fixtweet'; let workerName = 'fixtweet';