codeplay-common 3.2.7 → 3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/files/finalrelease +7 -0
- package/package.json +1 -1
package/files/finalrelease
CHANGED
|
@@ -159,6 +159,13 @@ function updateIOSVersion(versionCode, versionName) {
|
|
|
159
159
|
|
|
160
160
|
const pbxprojPath = join("ios", "App", "App.xcodeproj", "project.pbxproj");
|
|
161
161
|
|
|
162
|
+
// 🔥 Single check only
|
|
163
|
+
if (!existsSync(pbxprojPath)) {
|
|
164
|
+
console.warn("⚠️ iOS project not found, skipping version update");
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
|
|
162
169
|
let content = readFileSync(pbxprojPath, 'utf8');
|
|
163
170
|
|
|
164
171
|
// Update MARKETING_VERSION
|