Merge pull request #14696 from trop-bot/3-0-x-bp-chore--fix-await-in-cleanup-script-1537375163163
chore: fix await in cleanup script (backport: 3-0-x)
This commit is contained in:
commit
9bb6c9dc99
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