From 34ff326c579801ec45af5c8956c0014425743887 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 31 Jul 2024 11:02:21 +1000 Subject: [PATCH] Use full path for build folder --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 95597d42..5d780e1f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -12,7 +12,7 @@ PROJECT_FOLDER = Pathname.new(File.join(Dir.pwd, '..')).expand_path.to_s WORKSPACE = 'Simplenote.xcworkspace' INTERNAL_SCHEME = 'Simplenote' APP_STORE_SCHEME = 'Simplenote' -BUILD_FOLDER = 'build' +BUILD_FOLDER = File.join(PROJECT_FOLDER, 'build') APP_STORE_BUNDLE_IDENTIFIER = 'com.automattic.SimplenoteMac' APP_STORE_BUNDLE_IDENTIFIER_INTENTS = "#{APP_STORE_BUNDLE_IDENTIFIER}.IntentsExtension".freeze VERSION_FILE_PATH = File.join(PROJECT_FOLDER, 'config', 'Version.Public.xcconfig')