fix(shorebird_cli): flavor casing (#3052)
This commit is contained in:
@@ -205,7 +205,7 @@ class Apple {
|
||||
.where((e) => p.extension(e.path) == '.xcscheme')
|
||||
.where((e) => p.basenameWithoutExtension(e.path) != 'Runner')
|
||||
.whereNot((e) => _isExtensionScheme(schemeFile: e))
|
||||
.map((file) => p.basenameWithoutExtension(file.path))
|
||||
.map((file) => p.basenameWithoutExtension(file.path).toLowerCase())
|
||||
.toSet();
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion="1430"
|
||||
version="1.7">
|
||||
<BuildAction
|
||||
parallelizeBuildables="YES"
|
||||
buildImplicitDependencies="YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting="YES"
|
||||
buildForRunning="YES"
|
||||
buildForProfiling="YES"
|
||||
buildForArchiving="YES"
|
||||
buildForAnalyzing="YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier="primary"
|
||||
BlueprintIdentifier="97C146ED1CF9000F007C117D"
|
||||
BuildableName="Runner.app"
|
||||
BlueprintName="Runner"
|
||||
ReferencedContainer="container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration="Debug-Dev"
|
||||
selectedDebuggerIdentifier="Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier="Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv="YES"
|
||||
shouldAutocreateTestPlan="YES">
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration="Debug-Dev"
|
||||
selectedDebuggerIdentifier="Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier="Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle="0"
|
||||
useCustomWorkingDirectory="NO"
|
||||
ignoresPersistentStateOnLaunch="NO"
|
||||
debugDocumentVersioning="YES"
|
||||
debugServiceExtension="Dev"
|
||||
allowLocationSimulation="YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode="0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier="primary"
|
||||
BlueprintIdentifier="97C146ED1CF9000F007C117D"
|
||||
BuildableName="Runner.app"
|
||||
BlueprintName="Runner"
|
||||
ReferencedContainer="container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration="Release-Dev"
|
||||
shouldUseLaunchSchemeArgsEnv="YES"
|
||||
savedToolIdentifier=""
|
||||
useCustomWorkingDirectory="NO"
|
||||
debugDocumentVersioning="YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode="0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier="primary"
|
||||
BlueprintIdentifier="97C146ED1CF9000F007C117D"
|
||||
BuildableName="Runner.app"
|
||||
BlueprintName="Runner"
|
||||
ReferencedContainer="container:Runner.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration="Debug-Dev">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration="Release-Dev"
|
||||
revealArchiveInOrganizer="YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
@@ -245,7 +245,7 @@ To add macOS, run "flutter create . --platforms macos"''');
|
||||
runWithOverrides(
|
||||
() => apple.flavors(platform: ApplePlatform.ios),
|
||||
),
|
||||
{'internal', 'beta', 'stable'},
|
||||
{'internal', 'beta', 'stable', 'dev'},
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -264,7 +264,7 @@ To add macOS, run "flutter create . --platforms macos"''');
|
||||
runWithOverrides(
|
||||
() => apple.flavors(platform: ApplePlatform.ios),
|
||||
),
|
||||
{'internal', 'beta', 'stable'},
|
||||
{'internal', 'beta', 'stable', 'dev'},
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -344,7 +344,7 @@ To add macOS, run "flutter create . --platforms macos"''');
|
||||
runWithOverrides(
|
||||
() => apple.flavors(platform: ApplePlatform.macos),
|
||||
),
|
||||
{'internal', 'beta', 'stable'},
|
||||
{'internal', 'beta', 'stable', 'dev'},
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user