Skip to content

Commit

Permalink
🔨 Arrays need a different test
Browse files Browse the repository at this point in the history
  • Loading branch information
mountainash committed Mar 12, 2024
1 parent 8993566 commit 25cda42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
- [x] Removed default "deploy" label from PRs
- [x] More emojis in logs 📝
- [x] Better accessability formatting for comment table
- [ ] Build within action (not just PREBUILT)
- [ ] Transfer secrets/envars from GHAction to Vercel Settings

---

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32355,7 +32355,7 @@ const init = () => {
})
}

if (BUILD_ENV) {
if (BUILD_ENV.length) {
BUILD_ENV.forEach((item) => {
commandArguments = commandArguments.concat([ '--build-env', item ])
})
Expand Down
2 changes: 1 addition & 1 deletion src/vercel.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const init = () => {
})
}

if (BUILD_ENV) {
if (BUILD_ENV.length) {
BUILD_ENV.forEach((item) => {
commandArguments = commandArguments.concat([ '--build-env', item ])
})
Expand Down

0 comments on commit 25cda42

Please sign in to comment.