()
| 135 | } |
| 136 | |
| 137 | private _isCmdFile(): boolean { |
| 138 | const upperToolPath: string = this.toolPath.toUpperCase() |
| 139 | return ( |
| 140 | this._endsWith(upperToolPath, '.CMD') || |
| 141 | this._endsWith(upperToolPath, '.BAT') |
| 142 | ) |
| 143 | } |
| 144 | |
| 145 | private _windowsQuoteCmdArg(arg: string): string { |
| 146 | // for .exe, apply the normal quoting rules that libuv applies |
no test coverage detected