mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
export function getOrcaCliCommandNameForPlatform(platform: NodeJS.Platform): string {
|
|
if (platform === 'linux') {
|
|
return 'orca-ide'
|
|
}
|
|
if (platform === 'win32') {
|
|
return 'orca.cmd'
|
|
}
|
|
return 'orca'
|
|
}
|