Skip to content

Commit 06aeb29

Browse files
authored
corrected exclamation mark (#69)
1 parent 26fe6d3 commit 06aeb29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ async function dep() {
117117
try {
118118
let optionsArg = core.getInput('options')
119119
if (optionsArg !== '') {
120-
for (let [key, value] in Object.entries(JSON.parse(optionsArg))) {
121-
options.push('-o', `${key}=${value}`)
122-
}
123-
} catch (e) {
124-
console.error('Invalid JSON in options')
120+
for (let [key, value] in Object.entries(JSON.parse(optionsArg))) {
121+
options.push('-o', `${key}=${value}`)
125122
}
126123
}
124+
} catch (e) {
125+
console.error('Invalid JSON in options')
126+
}
127127

128128
try {
129129
await $`php ${dep} ${cmd} ${recipe} --no-interaction ${ansi} ${verbosity} ${options}`

0 commit comments

Comments
 (0)