Files
zn-ai/scripts/configure-zx-shell.mjs

8 lines
150 B
JavaScript

import { usePowerShell } from 'zx';
export function configureZxShellForPlatform() {
if (process.platform === 'win32') {
usePowerShell();
}
}