mirror of
https://github.com/deployphp/action.git
synced 2025-02-18 17:40:26 +00:00
Refactor error
This commit is contained in:
parent
77ac0bfc15
commit
6c596fa80d
1 changed files with 5 additions and 2 deletions
7
index.js
7
index.js
|
@ -64,12 +64,15 @@ async function dep() {
|
|||
dep = 'deployer.phar'
|
||||
}
|
||||
|
||||
let p = execa.command(`php ${dep} --ansi -v ${core.getInput('dep')}`)
|
||||
let cmd = core.getInput('dep')
|
||||
|
||||
let p = execa.command(`php ${dep} --ansi -v ${cmd}`)
|
||||
p.stdout.pipe(process.stdout)
|
||||
p.stderr.pipe(process.stderr)
|
||||
|
||||
try {
|
||||
await p
|
||||
} catch (err) {
|
||||
core.setFailed(err.shortMessage)
|
||||
core.setFailed(`Failed: dep ${cmd}`)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue