handle nushell scripts out of the box

This commit is contained in:
Marcello 2024-10-25 00:16:00 +02:00
parent e1e6a384c0
commit 1f67585c82
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
2 changed files with 8 additions and 1 deletions

View file

@ -61,6 +61,13 @@ internal static class ScriptExecutor
Verb = verb,
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
{
FileName = "sh",

View file

@ -2,7 +2,7 @@ namespace ScriptLauncher;
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[] { ',', ' ' };
public string[] Extensions { get; }