mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
9 lines
196 B
TypeScript
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];
|
|
}
|