(inputPath: string)
| 40 | * @param inputPath |
| 41 | */ |
| 42 | export function addPath(inputPath: string): void { |
| 43 | issueCommand('add-path', {}, inputPath) |
| 44 | process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}` |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Gets the value of an input. The value is also trimmed. |
nothing calls this directly
no test coverage detected