mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
fallback on sh -c
for unknown scripts extensions
This commit is contained in:
parent
1f67585c82
commit
a7166a5422
2 changed files with 7 additions and 8 deletions
|
@ -50,32 +50,31 @@ internal static class ScriptExecutor
|
||||||
".bat" or ".cmd" => new ProcessStartInfo
|
".bat" or ".cmd" => new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "cmd",
|
FileName = "cmd",
|
||||||
Arguments = $"/Q /C {file.Name}",
|
Arguments = $"/Q /C ./{file.Name}",
|
||||||
Verb = verb,
|
Verb = verb,
|
||||||
WorkingDirectory = file.DirectoryName,
|
WorkingDirectory = file.DirectoryName,
|
||||||
},
|
},
|
||||||
".ps1" => new ProcessStartInfo
|
".ps1" => new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "powershell.exe",
|
FileName = "powershell.exe",
|
||||||
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File {file.Name}",
|
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File ./{file.Name}",
|
||||||
Verb = verb,
|
Verb = verb,
|
||||||
WorkingDirectory = file.DirectoryName,
|
WorkingDirectory = file.DirectoryName,
|
||||||
},
|
},
|
||||||
".nu" => new ProcessStartInfo
|
".nu" => new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "nu",
|
FileName = "nu",
|
||||||
Arguments = $"--no-config-file {file.Name}",
|
Arguments = $"--no-config-file ./{file.Name}",
|
||||||
Verb = verb,
|
Verb = verb,
|
||||||
WorkingDirectory = file.DirectoryName,
|
WorkingDirectory = file.DirectoryName,
|
||||||
},
|
},
|
||||||
".sh" or ".zsh" or ".fish" => new ProcessStartInfo
|
_ => new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "sh",
|
FileName = "sh",
|
||||||
Arguments = $"-c {file.Name}",
|
Arguments = $"-c ./{file.Name}",
|
||||||
Verb = verb,
|
Verb = verb,
|
||||||
WorkingDirectory = file.DirectoryName,
|
WorkingDirectory = file.DirectoryName,
|
||||||
},
|
},
|
||||||
_ => null,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net8.0</TargetFrameworks>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<AnalysisMode>All</AnalysisMode>
|
<AnalysisMode>All</AnalysisMode>
|
||||||
<Version>0.1.5</Version>
|
<Version>0.1.6</Version>
|
||||||
<PackAsTool>true</PackAsTool>
|
<PackAsTool>true</PackAsTool>
|
||||||
<Description>Tool to find and exec shell scripts</Description>
|
<Description>Tool to find and exec shell scripts</Description>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
|
|
Loading…
Add table
Reference in a new issue