Adjustments

This commit is contained in:
James Ives 2020-09-27 14:54:34 -04:00
parent 8912f4fdb3
commit 99e98da995

View File

@ -31,10 +31,12 @@ export async function init(action: ActionInterface): Promise<void | Error> {
try { try {
await execute(`git remote rm origin`, action.workspace, action.silent) await execute(`git remote rm origin`, action.workspace, action.silent)
} finally {
if (action.isTest) { if (action.isTest) {
info('Attempted to remove origin…') throw new Error()
} }
} catch {
info('Attempted to remove origin but failed, continuing…')
} }
await execute( await execute(
@ -183,10 +185,12 @@ export async function deploy(action: ActionInterface): Promise<Status> {
try { try {
await execute(`git stash apply`, action.workspace, action.silent) await execute(`git stash apply`, action.workspace, action.silent)
} finally {
if (action.isTest) { if (action.isTest) {
info('Attempted to apply stash…') throw new Error()
} }
} catch {
info('Unable to apply from stash, continuing…')
} }
} }