fix relative path

This commit is contained in:
zivan 2021-09-18 16:41:06 +07:00
parent 9eab20634f
commit 879d527eb5

View file

@ -52,7 +52,7 @@ function dep() {
if (!dep) { if (!dep) {
execa.commandSync('curl -LO https://deployer.org/deployer.phar') execa.commandSync('curl -LO https://deployer.org/deployer.phar')
execa.commandSync('sudo chmod +x deployer.phar') execa.commandSync('sudo chmod +x deployer.phar')
dep = 'deployer.phar' dep = './deployer.phar'
} }
const subprocess = execa(dep, split(core.getInput('dep'))) const subprocess = execa(dep, split(core.getInput('dep')))