Skip to content

Commit 13e96e9

Browse files
authored
Fix variable quoting issue (#16165)
1 parent 8f77938 commit 13e96e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/apple/RetroArch_iOS13.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1416,7 +1416,7 @@
14161416
);
14171417
runOnlyForDeploymentPostprocessing = 0;
14181418
shellPath = /bin/sh;
1419-
shellScript = "cd \"$SRCBASE\"\nif [ -f \".git_version.h\" ] ; then\n cp .git_version.h ${DERIVED_FILE_DIR}/git_version.h\nelse\n echo '#define GIT_VERSION ' $(git rev-parse --short HEAD) > ${DERIVED_FILE_DIR}/git_version.h\nfi\n";
1419+
shellScript = "cd \"$SRCBASE\"\nif [ -f \".git_version.h\" ] ; then\n cp .git_version.h \"${DERIVED_FILE_DIR}\"/git_version.h\nelse\n echo '#define GIT_VERSION ' $(git rev-parse --short HEAD) > \"${DERIVED_FILE_DIR}\"/git_version.h\nfi\n";
14201420
showEnvVarsInLog = 0;
14211421
};
14221422
07340E8D2B47A4910076B75D /* ShellScript */ = {
@@ -1436,7 +1436,7 @@
14361436
);
14371437
runOnlyForDeploymentPostprocessing = 0;
14381438
shellPath = /bin/sh;
1439-
shellScript = "cd \"$SRCBASE\"\nif [ -f \".git_version.h\" ] ; then\n cp .git_version.h ${DERIVED_FILE_DIR}/git_version.h\nelse\n echo '#define GIT_VERSION ' $(git rev-parse --short HEAD) > ${DERIVED_FILE_DIR}/git_version.h\nfi\n";
1439+
shellScript = "cd \"$SRCBASE\"\nif [ -f \".git_version.h\" ] ; then\n cp .git_version.h \"${DERIVED_FILE_DIR}\"/git_version.h\nelse\n echo '#define GIT_VERSION ' $(git rev-parse --short HEAD) > \"${DERIVED_FILE_DIR}\"/git_version.h\nfi\n";
14401440
showEnvVarsInLog = 0;
14411441
};
14421442
9204BE271D319EF300BD49DB /* ShellScript */ = {

0 commit comments

Comments
 (0)