mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-12 02:20:46 +08:00
11 lines
276 B
TypeScript
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(':')
|
|
}
|