Post

Replies

Boosts

Views

Activity

Reply to Duplicate output file
I answer to myself.The error comes from using the automatic increment script of the Bundle version below. It copies the info.plist to the project.bundlePhase files, which creates a duplicate.Here is the script:#!/bin/bash bN=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE") bN=$((bN += 1)) bN=$(printf "%d" $bN) /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $bN" "$INFOPLIST_FILE"This script is from Jeffrey Jackson at CoderWall.comNote: this script run correctly with a new app created with the New Build System, not with older one. (It's my case)HTH
Mar ’20