We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SRCROOT
The script for the build phase Copy GoogleService-Info.plist fails when SRCROOT contains a space character, e.g., /path/to/folder of/Alfie-iOS.
Copy GoogleService-Info.plist
/path/to/folder of/Alfie-iOS
Alfie-iOS/Alfie/Alfie.xcodeproj/project.pbxproj
Line 356 in 3b86301
The last line of the script:
cp $SOURCE_CONFIG_PATH $DESTINATION_CONFIG_PATH
...should be:
cp "$SOURCE_CONFIG_PATH" "$DESTINATION_CONFIG_PATH"
(Technically, for this issue, quotes are only needed around the first variable.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The script for the build phase
Copy GoogleService-Info.plist
fails whenSRCROOT
contains a space character, e.g.,/path/to/folder of/Alfie-iOS
.Alfie-iOS/Alfie/Alfie.xcodeproj/project.pbxproj
Line 356 in 3b86301
The last line of the script:
...should be:
(Technically, for this issue, quotes are only needed around the first variable.)
The text was updated successfully, but these errors were encountered: