Skip to content

Commit

Permalink
fix(ios): types when passing port to env in xcodebuild (#2245)
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak committed Feb 2, 2024
1 parent 41f5c8c commit 9e91575
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function getProcessOptions<T extends BuildFlags>(
: '';

const port =
'port' in args && typeof args.port === 'string' ? args.port : '';
'port' in args && typeof args.port === 'number' ? String(args.port) : '';

return {
env: {
Expand Down

0 comments on commit 9e91575

Please sign in to comment.