Skip to content

Commit 9e4562e

Browse files
Fix another incremental installer issue (#2826)
Signed-off-by: Brentley Jones <[email protected]>
1 parent 010d2f9 commit 9e4562e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xcodeproj/internal/templates/incremental_installer.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,6 @@ readonly dest_project_pbxproj="$dest/project.pbxproj"
9494
$cp_cmd "$src_project_pbxproj" "$dest_project_pbxproj"
9595
chmod +w "$dest_project_pbxproj"
9696

97-
# Copy over `generated.xcfilelist`
98-
readonly dest_generated_xcfilelist="$dest/rules_xcodeproj/generated.xcfilelist"
99-
100-
$cp_cmd "$src_generated_xcfilelist" "$dest_generated_xcfilelist"
101-
chmod u+w "$dest_generated_xcfilelist"
102-
10397
# Copy over bazel integration files
10498
readonly bazel_integration_files=%bazel_integration_files%
10599

@@ -116,6 +110,12 @@ fi
116110

117111
chmod u+w "$dest/rules_xcodeproj/bazel/"*
118112

113+
# Copy over `generated.xcfilelist`
114+
readonly dest_generated_xcfilelist="$dest/rules_xcodeproj/generated.xcfilelist"
115+
116+
$cp_cmd "$src_generated_xcfilelist" "$dest_generated_xcfilelist"
117+
chmod u+w "$dest_generated_xcfilelist"
118+
119119
# - Keep only scripts as runnable
120120
find "$dest/rules_xcodeproj/bazel" \
121121
-type f \( -name "*.sh" -o -name "*.py" \) \

0 commit comments

Comments
 (0)