Skip to content

Commit 40b7724

Browse files
fix stray whitespace in framework path checker for iOS 🤦‍♀️ - fixes #619
1 parent 4996e2d commit 40b7724

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/source/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ In this case, the `check-and-run-apollo-cli.sh` file is bundled into the framewo
9797
# Do some magic so we can make sure `FRAMEWORK_SEARCH_PATHS` works correctly when there's a space in the scheme or the folder name.
9898
QUOTED_FRAMEWORK_SEARCH_PATHS=\"$(echo $FRAMEWORK_SEARCH_PATHS | tr -d '"' | sed -e 's/ \//" "\//g')\"
9999

100-
APOLLO_FRAMEWORK_PATH ="$(eval find ${QUOTED_FRAMEWORK_SEARCH_PATHS} -name "Apollo.framework" -maxdepth 1)"
100+
APOLLO_FRAMEWORK_PATH="$(eval find ${QUOTED_FRAMEWORK_SEARCH_PATHS} -name "Apollo.framework" -maxdepth 1)"
101101

102102
if [ -z "${APOLLO_FRAMEWORK_PATH}" ]; then
103103
echo "error: Couldn't find Apollo.framework in FRAMEWORK_SEARCH_PATHS; make sure to add the framework to your project."

0 commit comments

Comments
 (0)