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
xcodegen(executable: "mint run mint run xcodegen",spec: "foo.yml")
Output
[18:09:27]: ----------------------
[18:09:27]: --- Step: xcodegen ---
[18:09:27]: ----------------------
[18:09:27]: $ mint\ run\ mint\ run\ xcodegen --spec /Users/uhooi/.../foo.yml
[18:09:27]: -------------------
[18:09:27]: --- Step: is_ci ---
[18:09:27]: -------------------
+-----------------------------------+----------------------------+
| Lane Context |
+-----------------------------------+----------------------------+
| DEFAULT_PLATFORM | ios || PLATFORM_NAME | ios || LANE_NAME | ios setup || GET_INFO_PLIST_VALUE_CUSTOM_VALUE |$(CURRENT_PROJECT_VERSION)|
+-----------------------------------+----------------------------+
[18:09:27]: No such file or directory - mint run mint run xcodegen
Reason
Because of the escaped spaces.
# NG
$ mint\ run\ mint\ run\ xcodegen --spec /Users/uhooi/.../foo.yml
-bash: mint run mint run xcodegen: command not found
# OK
$ mint run mint run xcodegen --spec /Users/uhooi/.../foo.yml
Issue
Unable to run
mint run mint run xcodegen.Fastfile
Output
Reason
Because of the escaped spaces.
Is there any way to avoid escaping spaces?