We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26fe6d3 commit 06aeb29Copy full SHA for 06aeb29
index.js
@@ -117,13 +117,13 @@ async function dep() {
117
try {
118
let optionsArg = core.getInput('options')
119
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')
+ for (let [key, value] in Object.entries(JSON.parse(optionsArg))) {
+ options.push('-o', `${key}=${value}`)
125
}
126
+ } catch (e) {
+ console.error('Invalid JSON in options')
+ }
127
128
129
await $`php ${dep} ${cmd} ${recipe} --no-interaction ${ansi} ${verbosity} ${options}`
0 commit comments