Skip to content

Commit

Permalink
chore: fix current branch fetch on master (#18861)
Browse files Browse the repository at this point in the history
  • Loading branch information
trop[bot] authored and codebytere committed Jun 18, 2019
1 parent f09f926 commit ebc937c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions script/lib/utils.js
Expand Up @@ -27,7 +27,8 @@ function getAbsoluteElectronExec () {
async function handleGitCall (args, gitDir) {
const details = await GitProcess.exec(args, gitDir)
if (details.exitCode === 0) {
return details.stdout.trim()
const output = details.stdout.replace(/^\*|\s+|\s+$/, '')
return output.trim()
} else {
const error = GitProcess.parseError(details.stderr)
console.log(`${fail} couldn't parse git process call: `, error)
Expand All @@ -37,10 +38,14 @@ async function handleGitCall (args, gitDir) {

async function getCurrentBranch (gitDir) {
let branch = await handleGitCall(['rev-parse', '--abbrev-ref', 'HEAD'], gitDir)
if (!branch.match(/[0-9]+-[0-9]+-x/)) {
if (branch !== 'master' && !branch.match(/[0-9]+-[0-9]+-x/)) {
const lastCommit = await handleGitCall(['rev-parse', 'HEAD'], gitDir)
const branches = (await handleGitCall(['branch', '--contains', lastCommit], gitDir)).split('\n')
branch = branches.filter(b => b.match(/[0-9]+-[0-9]+-x/))[0].trim()
branch = branches.filter(b => b === 'master' || b.match(/[0-9]+-[0-9]+-x/))[0]
if (!branch) {
console.log(`${fail} no release branch exists for this ref`)
process.exit(1)
}
}
return branch
}
Expand Down

0 comments on commit ebc937c

Please sign in to comment.