You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within our server setup we use the SimCtl gem to spin up simulators for test automation. One of the problems we have is that we support multiple versions of xcode. Each version of xcode is separated by a space, and then the version number (so you get Xcode 9.1.0, Xcode 8.3.3, etc).
This however breaks the SimCtl gem since the var HOME in path.rb doesn't escape shell specific characters.
A simple fix would be to use shellwords to escape the outcome of xcode-select -p
Best regards,
Sander Saelmans
The text was updated successfully, but these errors were encountered:
Hey Johannes,
Within our server setup we use the SimCtl gem to spin up simulators for test automation. One of the problems we have is that we support multiple versions of xcode. Each version of xcode is separated by a space, and then the version number (so you get Xcode 9.1.0, Xcode 8.3.3, etc).
This however breaks the SimCtl gem since the var
HOME
inpath.rb
doesn't escape shell specific characters.A simple fix would be to use shellwords to escape the outcome of
xcode-select -p
Best regards,
Sander Saelmans
The text was updated successfully, but these errors were encountered: