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

9 lines
189 B
TypeScript

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