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

9 lines
196 B
TypeScript

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