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; }