Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .fallout/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"properties": {
"CodecovToken": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
"default": "Secrets must be entered via 'fallout :secrets [profile]'"
},
"Configuration": {
"type": "string",
Expand All @@ -135,7 +135,7 @@
},
"GitHubReleaseGitHubToken": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
"default": "Secrets must be entered via 'fallout :secrets [profile]'"
},
"IgnoreFailedSources": {
"type": "boolean",
Expand All @@ -146,7 +146,7 @@
},
"NuGetApiKey": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
"default": "Secrets must be entered via 'fallout :secrets [profile]'"
},
"Solution": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void OnBuildCreated(IReadOnlyCollection<ExecutableTarget> executableTarge
{
"The old-style .nuke configuration is no longer supported.",
"You can convert to the new-style .nuke directory by calling:",
" nuke :update"
" fallout :update"
}.JoinNewLine());
Environment.Exit(exitCode: -1);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Fallout.Build/Utilities/SchemaUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private static JsonObject BuildPropertySchema(MemberInfo member, IFalloutBuild b
}

if (member.HasCustomAttribute<SecretAttribute>())
schema["default"] = "Secrets must be entered via 'nuke :secrets [profile]'";
schema["default"] = "Secrets must be entered via 'fallout :secrets [profile]'";

// Override-with-enumeration: parameters with a value set become string enums (or array-of-string-enums).
var valueSet = ParameterService.GetParameterValueSet(member, build)?.Select(x => x.Text).ToList();
Expand Down
8 changes: 4 additions & 4 deletions src/Fallout.Cli/Program.Navigation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ namespace Fallout.Cli;

partial class Program
{
// function nuke- { nuke :PopDirectory; cd $(nuke :GetNextDirectory) }
// function nuke/ { nuke :PushWithChosenRootDirectory; cd $(nuke :GetNextDirectory) }
// function nuke. { nuke :PushWithCurrentRootDirectory; cd $(nuke :GetNextDirectory) }
// function nuke.. { nuke :PushWithParentRootDirectory; cd $(nuke :GetNextDirectory) }
// function fallout- { fallout :PopDirectory; cd $(fallout :GetNextDirectory) }
// function fallout/ { fallout :PushWithChosenRootDirectory; cd $(fallout :GetNextDirectory) }
// function fallout. { fallout :PushWithCurrentRootDirectory; cd $(fallout :GetNextDirectory) }
// function fallout.. { fallout :PushWithParentRootDirectory; cd $(fallout :GetNextDirectory) }

private static string SessionId
=> EnvironmentInfo.Platform switch
Expand Down
2 changes: 1 addition & 1 deletion src/Fallout.Cli/Program.Secrets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Fallout.Cli;
// TODO: unlock prompt
// TODO: environment variable name
// TODO: profile vs. environment
// TODO: nuke :profile <name>
// TODO: fallout :profile <name>
partial class Program
{
private const string SaveAndExit = "<Save & Exit>";
Expand Down
2 changes: 1 addition & 1 deletion src/Fallout.Tooling/NuGetToolPathResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ from packageVersion in
{
"Missing package reference/download.",
"Run one of the following commands:"
}.Concat(packageCombinations.Distinct().Select(x => $" - nuke :add-package {x.Id} --version {x.Version}"))
}.Concat(packageCombinations.Distinct().Select(x => $" - fallout :add-package {x.Id} --version {x.Version}"))
.JoinNewLine(),
exception);
throw new Exception("Not reachable");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
},
"SecretParam": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
"default": "Secrets must be entered via 'fallout :secrets [profile]'"
},
"Skip": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
},
"SecretParam": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
"default": "Secrets must be entered via 'fallout :secrets [profile]'"
},
"StringArrayParam": {
"type": "array",
Expand Down
Loading