blob: a78bede81d93501be867fb730c851ab4272d2577 (
plain)
1
2
3
4
5
6
7
8
|
import { remove } from "fs-extra";
import { EnvironmentVariables } from "./util";
const env = process.env as EnvironmentVariables;
export default async function(): Promise<void> {
await remove(env.GIT_DIR);
}
|