function describeGitRepo()

in build-tools/build-id.js [32:35]


function describeGitRepo () {
    const gitArgs = ['describe', '--always', '--tags', '--match=rel/*', '--dirty'];
    return child_process.spawnSync('git', gitArgs, { cwd: pkgRoot }).stdout;
}