(destination: string)
| 85 | let taskPath = path.join(root.uri.fsPath, '.vscode'); |
| 86 | |
| 87 | function copyTaskFile(destination: string) { |
| 88 | copyFile(pdeTaskFile, destination, function (err: Error) { |
| 89 | if (err) { |
| 90 | return console.log(err); |
| 91 | } |
| 92 | remindAddToPath(); |
| 93 | }); |
| 94 | } |
| 95 | |
| 96 | fs.stat(taskPath, (err, stats) => { |
| 97 | if (err && err.code === 'ENOENT') { |
no test coverage detected