hippofish/scripts/dev-down.mjs
2024-03-04 17:09:59 +08:00

12 lines
288 B
JavaScript

import path, { join } from "node:path";
import { fileURLToPath } from "node:url";
import { execa } from "execa";
(async () => {
const __dirname = path.dirname(fileURLToPath(import.meta.url));
execa("podman-compose", {
cwd: join(__dirname, "/../dev"),
stdio: "inherit",
});
})();