mirror of
https://github.com/kyleneideck/BackgroundMusic
synced 2024-11-10 06:34:22 +00:00
Fix build_and_install.sh failing when run from a path containing spaces.
When build_and_install.sh tried to install BGMXPCHelper, xcodebuild would fail to run post_install.sh. Fixes #187.
This commit is contained in:
parent
5257b4c94d
commit
a4c93c050b
1 changed files with 1 additions and 1 deletions
|
@ -945,7 +945,7 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 1;
|
||||
shellPath = /bin/bash;
|
||||
shellScript = "/bin/bash $SRCROOT/BGMXPCHelper/post_install.sh\n";
|
||||
shellScript = "/bin/bash \"$SRCROOT/BGMXPCHelper/post_install.sh\"\n";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
|
|
Loading…
Reference in a new issue