()
| 168 | const wavesrvBinName = `wavesrv.${unameArch}`; |
| 169 | |
| 170 | function getWaveSrvPath(): string { |
| 171 | if (process.platform === "win32") { |
| 172 | const winBinName = `${wavesrvBinName}.exe`; |
| 173 | const appPath = path.join(getElectronAppUnpackedBasePath(), "bin", winBinName); |
| 174 | return `${appPath}`; |
| 175 | } |
| 176 | return path.join(getElectronAppUnpackedBasePath(), "bin", wavesrvBinName); |
| 177 | } |
| 178 | |
| 179 | function getWaveSrvCwd(): string { |
| 180 | return getWaveDataDir(); |
no test coverage detected