(term: boolean = false)
| 86 | } |
| 87 | |
| 88 | export function getRPathConfigEntry(term: boolean = false): string { |
| 89 | const trunc = (term ? 'rterm' : 'rpath'); |
| 90 | const platform = ( |
| 91 | process.platform === 'win32' ? 'windows' : |
| 92 | process.platform === 'darwin' ? 'mac' : |
| 93 | 'linux' |
| 94 | ); |
| 95 | return `${trunc}.${platform}`; |
| 96 | } |
| 97 | |
| 98 | export async function getRpath(quote = false, overwriteConfig?: string): Promise<string | undefined> { |
| 99 | let rpath: string | undefined = ''; |
no outgoing calls
no test coverage detected