8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import { usePowerShell } from 'zx';
|
|
|
|
export function configureZxShellForPlatform() {
|
|
if (process.platform === 'win32') {
|
|
usePowerShell();
|
|
}
|
|
}
|