mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
style(sdk): apply prettier with single quotes
Run prettier across sdk/base and sdk/package to apply the standardized quote style (single quotes matching web).
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { arrayOf, string } from "ts-matches"
|
||||
import { arrayOf, string } from 'ts-matches'
|
||||
|
||||
export const splitCommand = (
|
||||
command: string | [string, ...string[]],
|
||||
): string[] => {
|
||||
if (arrayOf(string).test(command)) return command
|
||||
return ["sh", "-c", command]
|
||||
return ['sh', '-c', command]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user