Skip to content

Commit aa8060e

Browse files
fixed trust-plugins
xcodebuild -skipPackagePluginValidation argument does not take a YES/NO modifier, which i wasn't aware of. this commit fixes that.
1 parent 543c04b commit aa8060e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ async function main() {
233233
}
234234

235235
if (core.getBooleanInput('trust-plugins')) {
236-
args = args.concat(['-skipPackagePluginValidation', 'YES'])
236+
args.push('-skipPackagePluginValidation')
237237
}
238238

239239
if (action) args.push(action)

0 commit comments

Comments
 (0)