feat: rename executable to scrl

This commit is contained in:
Marcello 2023-01-27 16:27:08 +01:00
parent 0f91b22021
commit cf3f670fbf
5 changed files with 7 additions and 7 deletions

View file

@ -33,7 +33,7 @@ _**NOTE**_: The option `-p:PublishTrimmed=true` may produce some *warnings*. If
```sh ```sh
USAGE: USAGE:
script-launcher <path> [OPTIONS] scrl <path> [OPTIONS]
ARGUMENTS: ARGUMENTS:
<path> Starting directory (Default: .) <path> Starting directory (Default: .)

View file

@ -1,4 +1,4 @@
#!/usr/bin/env pwsh #!/usr/bin/env pwsh
function Test-CommandExists([Parameter(Mandatory)] [string] $command) function Test-CommandExists([Parameter(Mandatory)] [string] $command)
{ {
@ -12,7 +12,7 @@ function Test-CommandExists([Parameter(Mandatory)] [string] $command)
dotnet pack ./src -o ./nupkg dotnet pack ./src -o ./nupkg
$exists = $(Test-CommandExists script-launcher) $exists = $(Test-CommandExists scrl)
$action = $exists ? 'update' : 'install' $action = $exists ? 'update' : 'install'
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources

View file

@ -2,7 +2,7 @@
dotnet pack ./src -o ./nupkg dotnet pack ./src -o ./nupkg
EXISTS=$(command -v script-launcher) EXISTS=$(command -v scrl)
if [ "$EXISTS" ]; then if [ "$EXISTS" ]; then
ACTION="update" ACTION="update"

View file

@ -4,7 +4,7 @@ using Spectre.Console;
using Spectre.Console.Cli; using Spectre.Console.Cli;
var app = new CommandApp<RootCommand>(); var app = new CommandApp<RootCommand>();
app.Configure(x => x.SetApplicationName("script-launcher")); app.Configure(x => x.SetApplicationName("scrl"));
return app.Run(args); return app.Run(args);
sealed class RootCommand : AsyncCommand<RootCommandSettings> sealed class RootCommand : AsyncCommand<RootCommandSettings>

View file

@ -5,9 +5,9 @@
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>0.1.1</Version> <Version>0.1.2</Version>
<PackAsTool>true</PackAsTool> <PackAsTool>true</PackAsTool>
<ToolCommandName>script-launcher</ToolCommandName> <ToolCommandName>scrl</ToolCommandName>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>