From cf3f670fbf9bd3434037e09b047ecf626ae84d56 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 27 Jan 2023 16:27:08 +0100 Subject: [PATCH] feat: rename executable to `scrl` --- README.md | 2 +- install-as-dotnet-tool.ps1 | 4 ++-- install-as-dotnet-tool.sh | 2 +- src/Program.cs | 2 +- src/ScriptLauncher.csproj | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2089197..ab7118b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ _**NOTE**_: The option `-p:PublishTrimmed=true` may produce some *warnings*. If ```sh USAGE: - script-launcher [OPTIONS] + scrl [OPTIONS] ARGUMENTS: Starting directory (Default: .) diff --git a/install-as-dotnet-tool.ps1 b/install-as-dotnet-tool.ps1 index 32f1313..7d5076a 100644 --- a/install-as-dotnet-tool.ps1 +++ b/install-as-dotnet-tool.ps1 @@ -1,4 +1,4 @@ -#!/usr/bin/env pwsh +#!/usr/bin/env pwsh function Test-CommandExists([Parameter(Mandatory)] [string] $command) { @@ -12,7 +12,7 @@ function Test-CommandExists([Parameter(Mandatory)] [string] $command) dotnet pack ./src -o ./nupkg -$exists = $(Test-CommandExists script-launcher) +$exists = $(Test-CommandExists scrl) $action = $exists ? 'update' : 'install' dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources diff --git a/install-as-dotnet-tool.sh b/install-as-dotnet-tool.sh index 4b0924f..0232500 100755 --- a/install-as-dotnet-tool.sh +++ b/install-as-dotnet-tool.sh @@ -2,7 +2,7 @@ dotnet pack ./src -o ./nupkg -EXISTS=$(command -v script-launcher) +EXISTS=$(command -v scrl) if [ "$EXISTS" ]; then ACTION="update" diff --git a/src/Program.cs b/src/Program.cs index c17fdbf..a935a1d 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -4,7 +4,7 @@ using Spectre.Console; using Spectre.Console.Cli; var app = new CommandApp(); -app.Configure(x => x.SetApplicationName("script-launcher")); +app.Configure(x => x.SetApplicationName("scrl")); return app.Run(args); sealed class RootCommand : AsyncCommand diff --git a/src/ScriptLauncher.csproj b/src/ScriptLauncher.csproj index 0914938..1019ff8 100644 --- a/src/ScriptLauncher.csproj +++ b/src/ScriptLauncher.csproj @@ -5,9 +5,9 @@ net6.0 enable enable - 0.1.1 + 0.1.2 true - script-launcher + scrl