chore: fix await in cleanup script (#14670)
This commit is contained in:
parent
1b165c2c39
commit
c958ed6a85
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ async function getCurrentBranch (gitDir) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function revertBumpCommit (tag) {
|
async function revertBumpCommit (tag) {
|
||||||
const branch = getCurrentBranch()
|
const branch = await getCurrentBranch()
|
||||||
const commitToRevert = getLastBumpCommit(tag).hash
|
const commitToRevert = getLastBumpCommit(tag).hash
|
||||||
await GitProcess.exec(['revert', commitToRevert], gitDir)
|
await GitProcess.exec(['revert', commitToRevert], gitDir)
|
||||||
const pushDetails = await GitProcess.exec(['push', 'origin', `HEAD:${branch}`, '--follow-tags'], gitDir)
|
const pushDetails = await GitProcess.exec(['push', 'origin', `HEAD:${branch}`, '--follow-tags'], gitDir)
|
||||||
|
|
Loading…
Reference in a new issue