Skip to content

Instantly share code, notes, and snippets.

@qodunpob
Created August 2, 2018 06:05
Show Gist options
  • Save qodunpob/70a599f9437d55eb6c472293d70e66ea to your computer and use it in GitHub Desktop.
Save qodunpob/70a599f9437d55eb6c472293d70e66ea to your computer and use it in GitHub Desktop.
/* current branch name in the module source code repository */
const branch = spawnSync(
'git',
['symbolic-ref', '--short', 'HEAD'],
getSpawnOptions(rootDir, 'pipe')
).stdout.toString().trim();
/* branch name in the builds repository */
const buildBranch = branch === 'develop' ? 'master' : branch;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment