You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user delegating to Xcode, I want to sync only input-derived data directories (keeping unrelated and existing files) when assembling the derived data directory for delegation so that I can ensure xcodebuild perform an incremental build.
The content you are editing has changed. Please copy your edits and refresh the page.
Essentially, this issue is about performing a lenient sync which could be described as only the files from the source directory should be synced into the destination directory. Any additional files in the destination directory should be left untouched. There is a tiny gap where a source file could be replaced by "an additional file" between two syncs which would essentially cause the "additional file" to be deleted. Despite being a very small possibility, it would essentially mean, for this particular scenario, that Xcode is overwriting an input file with an output (or intermediate) file. This behaviour is a terrible practice and should be avoided at all costs, e.g. modifying the build specification.
As a user delegating to Xcode, I want to sync only input-derived data directories (keeping unrelated and existing files) when assembling the derived data directory for delegation so that I can ensure
xcodebuild
perform an incremental build.Sub-stories
Acceptance Criteria
New files in the assembled derived data directory should not be removed in subsequent execution.(covered by Xcode target build task should not remove intermediate files created byxcodebuild
#789)The text was updated successfully, but these errors were encountered: