mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
* Add Git Bash Windows terminal option * Harden Git Bash terminal detection --------- Co-authored-by: Jinwoo-H <jinwoo0825@gmail.com> Co-authored-by: Orca <help@stably.ai> Co-authored-by: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com>
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
export const WINDOWS_GIT_BASH_SHELL = 'git-bash'
|
|
|
|
export type BuiltInWindowsTerminalShell =
|
|
| 'powershell.exe'
|
|
| 'cmd.exe'
|
|
| 'wsl.exe'
|
|
| typeof WINDOWS_GIT_BASH_SHELL
|