We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a23e8 commit ea37cecCopy full SHA for ea37cec
src/main/scriptlet.ts
@@ -45,8 +45,12 @@ const toolCommandMap = new Map([
45
['php', (scriptPath) => `php ${scriptPath}`],
46
['node', (scriptPath) => `node ${scriptPath}`],
47
['bash', (scriptPath) => `bash ${scriptPath}`],
48
+ ['zsh', (scriptPath) => `zsh ${scriptPath}`],
49
+ ['fish', (scriptPath) => `fish ${scriptPath}`],
50
+ ['sh', (scriptPath) => `sh ${scriptPath}`],
51
['cmd', (scriptPath) => `cmd /s /c ${scriptPath}`],
52
['powershell', (scriptPath) => `powershell -File ${scriptPath}`],
53
+ ['pwsh', (scriptPath) => `pwsh -File ${scriptPath}`],
54
['lua', (scriptPath) => `lua ${scriptPath}`],
55
['r', (scriptPath) => `Rscript ${scriptPath}`],
56
['groovy', (scriptPath) => `groovy ${scriptPath}`],
0 commit comments