From 6558cf2e01bfab9b25856b4345a746f38df30efb Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Mon, 18 Apr 2022 21:29:06 -0500 Subject: [PATCH] Fix one time setup check This path should have changed with #319. --- xcodeproj/internal/installer.template.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcodeproj/internal/installer.template.sh b/xcodeproj/internal/installer.template.sh index 6dccb01d35..753db4ed98 100644 --- a/xcodeproj/internal/installer.template.sh +++ b/xcodeproj/internal/installer.template.sh @@ -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/" @@ -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.