Skip to content

Commit acf6d36

Browse files
unnameddthomaspaulmann
authored andcommitted
Upgrade support to languages used to write the Script Commands
1 parent df019c0 commit acf6d36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/Toolkit/Sources/ToolkitLibrary/Models/Language.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ enum Language {
2020
switch value {
2121
case "applescript", "osascript":
2222
self = .applescript
23-
case "bash", "zsh":
23+
case "bash", "zsh", "sh":
2424
self = .bash
2525
case "python", "python2", "python3":
2626
self = .python
2727
case "ruby":
2828
self = .ruby
2929
case "swift":
3030
self = .swift
31-
case "node", "js":
31+
case "node", "js", "zx":
3232
self = .node
3333
default:
3434
self = .custom(value)

0 commit comments

Comments
 (0)