mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
fix git branch calculation
This commit is contained in:
parent
53cee071e3
commit
5e58868567
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ config();
|
|||
const gitCommit = execSync('git rev-parse --short HEAD').toString().trim();
|
||||
const gitCommitFull = execSync('git rev-parse HEAD').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';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue