mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
handle nushell scripts out of the box
This commit is contained in:
parent
e1e6a384c0
commit
1f67585c82
2 changed files with 8 additions and 1 deletions
|
@ -61,6 +61,13 @@ internal static class ScriptExecutor
|
||||||
Verb = verb,
|
Verb = verb,
|
||||||
WorkingDirectory = file.DirectoryName,
|
WorkingDirectory = file.DirectoryName,
|
||||||
},
|
},
|
||||||
|
".nu" => new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "nu",
|
||||||
|
Arguments = $"--no-config-file {file.Name}",
|
||||||
|
Verb = verb,
|
||||||
|
WorkingDirectory = file.DirectoryName,
|
||||||
|
},
|
||||||
".sh" or ".zsh" or ".fish" => new ProcessStartInfo
|
".sh" or ".zsh" or ".fish" => new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "sh",
|
FileName = "sh",
|
||||||
|
|
|
@ -2,7 +2,7 @@ namespace ScriptLauncher;
|
||||||
|
|
||||||
internal readonly struct ScriptFinder
|
internal readonly struct ScriptFinder
|
||||||
{
|
{
|
||||||
private static readonly string[] DefaultExtensions = new[] { ".ps1", ".*sh", ".bat", ".cmd" };
|
private static readonly string[] DefaultExtensions = new[] { ".ps1", ".*sh", ".bat", ".cmd", ".nu" };
|
||||||
private static readonly char[] DefaultSeparators = new[] { ',', ' ' };
|
private static readonly char[] DefaultSeparators = new[] { ',', ' ' };
|
||||||
|
|
||||||
public string[] Extensions { get; }
|
public string[] Extensions { get; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue