escrcpy/electron/configs/gnirehtet/index.js
2023-10-30 16:36:16 +08:00

20 lines
585 B
JavaScript

import { extraResolve } from '@electron/helpers/index.js'
import which from 'which'
export const getGnirehtetPath = () => {
switch (process.platform) {
// case 'darwin':
// return extraResolve('mac/gnirehtet/gnirehtet')
case 'win32':
return extraResolve('win/gnirehtet/gnirehtet.exe')
case 'linux':
return extraResolve('linux/gnirehtet/gnirehtet')
default:
return which.sync('gnirehtet', { nothrow: true })
}
}
export const gnirehtetPath = getGnirehtetPath()
export const gnirehtetApkPath = extraResolve('common/gnirehtet/gnirehtet.apk')