Files
PicList/src/main/lifeCycle/fixPath.ts
2025-08-15 13:29:09 +08:00

11 lines
276 B
TypeScript

import { shellPathSync } from 'shell-path'
export default function fixPath() {
if (process.platform === 'win32') {
return
}
process.env.PATH =
shellPathSync() || ['./node_modules/.bin', '/.nodebrew/current/bin', '/usr/local/bin', process.env.PATH].join(':')
}