Files
start-sdk/lib/util/shell.ts
2023-04-07 11:43:05 -06:00

9 lines
198 B
TypeScript

import { Effects } from "../types";
export function sh(shellCommand: string) {
return {
command: "sh",
args: ["-c", shellCommand],
} as Partial<Parameters<Effects["runCommand"]>[0]>;
}