diff --git a/fastlane/privacy/ios-postbuild.js b/fastlane/privacy/ios-postbuild.js index d757ed3..5ef8ef4 100644 --- a/fastlane/privacy/ios-postbuild.js +++ b/fastlane/privacy/ios-postbuild.js @@ -3,7 +3,7 @@ const xcode = require('xcode'); const fs = require('fs'); // get the project file -const projectPath = 'ios/ReveilleRides.xcodeproj/project.pbxproj'; +const projectPath = 'ios/MaroonRides.xcodeproj/project.pbxproj'; const project = xcode.project(projectPath); // parse the project file @@ -12,14 +12,14 @@ project.parse(function (error) { console.log('Error parsing the project file'); } - // find the key of the group named 'ReveilleRides' - const mainGroup = project.findPBXGroupKey({name: 'ReveilleRides'}); + // find the key of the group named 'MaroonRides' + const mainGroup = project.findPBXGroupKey({name: 'MaroonRides'}); // copy the file PrivacyInfo.xcprivacy to the group - fs.copyFileSync('fastlane/privacy/PrivacyInfo.xcprivacy', 'ios/ReveilleRides/PrivacyInfo.xcprivacy'); + fs.copyFileSync('fastlane/privacy/PrivacyInfo.xcprivacy', 'ios/MaroonRides/PrivacyInfo.xcprivacy'); // add the file PrivacyInfo.xcprivacy to the project (it is a .plist file) - project.addFile('ReveilleRides/PrivacyInfo.xcprivacy', mainGroup); + project.addFile('MaroonRides/PrivacyInfo.xcprivacy', mainGroup); console.log('Added PrivacyInfo.xcprivacy to the project!');