mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
export const splitCommand = (
|
|
command: string | [string, ...string[]],
|
|
): string[] => {
|
|
if (Array.isArray(command)) return command
|
|
return ['sh', '-c', command]
|
|
}
|