Formatting

This commit is contained in:
James Ives 2019-12-21 16:52:52 -05:00
parent 271d30c8e2
commit ae5d58fae3

View File

@ -156,7 +156,10 @@ export async function deploy(): Promise<any> {
// Cleans up temporary files/folders and restores the git state.
console.log("Running post deployment cleanup jobs... 🔧");
await execute(`rm -rf ${temporaryDeploymentDirectory}`, workspace);
await execute(`git checkout --progress --force ${action.defaultBranch}`, workspace)
await execute(
`git checkout --progress --force ${action.defaultBranch}`,
workspace
);
return Promise.resolve("Commit step complete...");
}