Skip to content

Commit 0bf91d3

Browse files
committed
Add vendor/bin/deployer.phar
1 parent b0ec39e commit 0bf91d3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
4141
# Deployer version to download from deployer.org.
4242
# First, the action will check for Deployer binary at those paths:
43+
# - `vendor/bin/deployer.phar`
4344
# - `vendor/bin/dep`
4445
# - `deployer.phar`
4546
# If the binary not found, phar version will be downloaded from

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function dep() {
4545
let dep = core.getInput('deployer-binary')
4646

4747
if (dep === '')
48-
for (let c of ['vendor/bin/dep', 'deployer.phar']) {
48+
for (let c of ['vendor/bin/deployer.phar', 'vendor/bin/dep', 'deployer.phar']) {
4949
if (fs.existsSync(c)) {
5050
dep = c
5151
console.log(`Using "${c}".`)

0 commit comments

Comments
 (0)