Files
cfw-autumn/scripts/dw/commands/enable.ts
2026-05-19 18:01:48 +01:00

10 lines
312 B
TypeScript

import { log } from "../helpers/shell.ts";
import { enableEnvLocalFiles } from "../helpers/env-files.ts";
export function cmdEnable(): void {
const { moved, missing, alreadyEnabled } = enableEnvLocalFiles();
log(
`enable: ${moved} restored, ${alreadyEnabled} already enabled, ${missing} not present`,
);
}