We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RemoteRunnable
BuildableReference
If a *.xcscheme contains RemoteRunnable tag without nested BuildableReference tag XcodeProj remove this file from .xcodeproj directory.
*.xcscheme
.xcodeproj
<RemoteRunnable runnableDebuggingMode = "1" BundleIdentifier = "me.ava.Ava-Staging" RemotePath = "/var/containers/Bundle/Application/018F0933-05E8-4359-9955-39E0523C4246/Ava.app"> </RemoteRunnable>
Inside XCScheme+Runnable.swift make buildableReference property optional.
XCScheme+Runnable.swift
buildableReference
public var buildableReference: BuildableReference?
Also replace the following line:
element.addChild(buildableReference.xmlElement())
with the next one:
if let buildableReference = buildableReference { element.addChild(buildableReference.xmlElement()) }
I will make a PR...
The text was updated successfully, but these errors were encountered:
Fix bug: if RemoteRunnable doesn't contains BuildableReference Xc…
ec8a69b
…odeProj removes xcscheme file Closes tuist#626
41eb630
…odeProj removes xcscheme file (#627) Closes #626
Successfully merging a pull request may close this issue.
What 🌱
If a
*.xcscheme
containsRemoteRunnable
tag without nestedBuildableReference
tag XcodeProj remove this file from.xcodeproj
directory.Proposal 🎉
Inside
XCScheme+Runnable.swift
makebuildableReference
property optional.Also replace the following line:
with the next one:
I will make a PR...
The text was updated successfully, but these errors were encountered: