refactor: log files if commit files to branch fails

This commit is contained in:
Rhys Arkins 2018-02-21 06:52:56 +01:00
parent 27d0626b62
commit d258c3849e

View file

@ -1014,10 +1014,15 @@ async function commitFilesToBranch(
gitPrivateKey
);
const isBranchExisting = await branchExists(branchName);
if (isBranchExisting) {
await updateBranch(branchName, commit);
} else {
await createBranch(branchName, commit);
try {
if (isBranchExisting) {
await updateBranch(branchName, commit);
} else {
await createBranch(branchName, commit);
}
} catch (err) /* istanbul ignore next */ {
logger.debug({ files });
throw err;
}
}