From 1f67585c824150602527191b57c7e6b975d95bbf Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 25 Oct 2024 00:16:00 +0200 Subject: [PATCH] handle nushell scripts out of the box --- src/ScriptExecutor.cs | 7 +++++++ src/ScriptFinder.cs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ScriptExecutor.cs b/src/ScriptExecutor.cs index 8c1cb4b..939e2b0 100644 --- a/src/ScriptExecutor.cs +++ b/src/ScriptExecutor.cs @@ -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", diff --git a/src/ScriptFinder.cs b/src/ScriptFinder.cs index 3ea2f4a..14554bf 100644 --- a/src/ScriptFinder.cs +++ b/src/ScriptFinder.cs @@ -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; }