Skip to content

Commit

Permalink
Fix one time setup check
Browse files Browse the repository at this point in the history
This path should have changed with #319.
  • Loading branch information
brentleyjones committed Apr 19, 2022
1 parent e54a8a2 commit 6558cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xcodeproj/internal/installer.template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rsync \
--exclude=project.xcworkspace \
--exclude=xcuserdata \
--exclude=xcshareddata/xcschemes \
--exclude=rules_xcodeproj/gen_dir \
--exclude=rules_xcodeproj/links \
--delete \
"$src/" "$dest/"

Expand Down Expand Up @@ -63,7 +63,7 @@ plutil -remove BuildSystemType "$workspace_settings" > /dev/null || true

echo 'Updated project at "%output_path%"'

if [ ! -d "$dest/rules_xcodeproj/gen_dir" ]; then
if [ ! -d "$dest/rules_xcodeproj/links/gen_dir" ]; then
# If "gen_dir" doesn't exist, this is most likely a fresh project. In that
# case, we should create generated files to have the initial experience be
# better.
Expand Down

0 comments on commit 6558cf2

Please sign in to comment.