fix unintended changes

This commit is contained in:
yimysty
2022-06-28 18:01:48 -07:00
parent 11a13019c2
commit 72b116b825
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@@ -7507,7 +7507,7 @@ async function cancelHandler(evtOrExitCodeOrError) {
core.info(`Deployment cancelled with ${pagesCancelDeployEndpoint}`) core.info(`Deployment cancelled with ${pagesCancelDeployEndpoint}`)
} }
} catch (e) { } catch (e) {
core.info('Deployment cancellation failed', e) console.log('Deployment cancellation failed', e)
} }
process.exit(isNaN(+evtOrExitCodeOrError) ? 1 : +evtOrExitCodeOrError) process.exit(isNaN(+evtOrExitCodeOrError) ? 1 : +evtOrExitCodeOrError)
} }

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@@ -32,7 +32,7 @@ async function cancelHandler(evtOrExitCodeOrError) {
core.info(`Deployment cancelled with ${pagesCancelDeployEndpoint}`) core.info(`Deployment cancelled with ${pagesCancelDeployEndpoint}`)
} }
} catch (e) { } catch (e) {
core.info('Deployment cancellation failed', e) console.log('Deployment cancellation failed', e)
} }
process.exit(isNaN(+evtOrExitCodeOrError) ? 1 : +evtOrExitCodeOrError) process.exit(isNaN(+evtOrExitCodeOrError) ? 1 : +evtOrExitCodeOrError)
} }