Skip to content

Commit 6c5ea59

Browse files
committed
[[ Bug 22605 ]] Fix storyboard compilation when spaces in app bundle
This patch fixes an issue where the storyboard files fail to compile when the app bundle contains spaces.
1 parent 157b1c6 commit 6c5ea59

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

ide-support/revsaveasiosstandalone.livecodescript

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,18 +1088,18 @@ private command revCompileStoryboardFiles pTarget, pSettings, pMinVersion, pImag
10881088
put tLaunchScreenStoryboard into url ("file:" & tLaunchScreenStoryboardFile)
10891089

10901090
get shell("xcrun" && \
1091-
"ibtool" && \
1092-
"--errors" && \
1093-
"--warnings" && \
1094-
"--notices" && \
1095-
"--auto-activate-custom-fonts" && \
1096-
"--target-device iphone" && \
1097-
"--target-device ipad" && \
1098-
"--minimum-deployment-target" && pMinVersion && \
1099-
"--output-format" && "human-readable-text" && \
1100-
"--compilation-directory" && pAppBundle && \
1101-
quote & tLaunchScreenStoryboardFile & quote)
1102-
1091+
"ibtool" && \
1092+
"--errors" && \
1093+
"--warnings" && \
1094+
"--notices" && \
1095+
"--auto-activate-custom-fonts" && \
1096+
"--target-device iphone" && \
1097+
"--target-device ipad" && \
1098+
"--minimum-deployment-target" && pMinVersion && \
1099+
"--output-format" && "human-readable-text" && \
1100+
"--compilation-directory" && quote & pAppBundle & quote && \
1101+
quote & tLaunchScreenStoryboardFile & quote)
1102+
11031103
if the result is not 0 then
11041104
throw format("failed to create launch screen: %s", it)
11051105
end if
@@ -1117,18 +1117,18 @@ private command revCompileStoryboardFiles pTarget, pSettings, pMinVersion, pImag
11171117
put tStartupScreenStoryboard into url ("file:" & tStartupScreenStoryboardFile)
11181118

11191119
get shell("xcrun" && \
1120-
"ibtool" && \
1121-
"--errors" && \
1122-
"--warnings" && \
1123-
"--notices" && \
1124-
"--auto-activate-custom-fonts" && \
1125-
"--target-device iphone" && \
1126-
"--target-device ipad" && \
1127-
"--minimum-deployment-target" && pMinVersion && \
1128-
"--output-format" && "human-readable-text" && \
1129-
"--compilation-directory" && pAppBundle && \
1130-
quote & tStartupScreenStoryboardFile & quote)
1131-
1120+
"ibtool" && \
1121+
"--errors" && \
1122+
"--warnings" && \
1123+
"--notices" && \
1124+
"--auto-activate-custom-fonts" && \
1125+
"--target-device iphone" && \
1126+
"--target-device ipad" && \
1127+
"--minimum-deployment-target" && pMinVersion && \
1128+
"--output-format" && "human-readable-text" && \
1129+
"--compilation-directory" && quote & pAppBundle & quote && \
1130+
quote & tStartupScreenStoryboardFile & quote)
1131+
11321132
if the result is not 0 then
11331133
throw format("failed to create startup screen: %s", it)
11341134
end if

0 commit comments

Comments
 (0)