(javaArchivePath: string)
| 264 | // |
| 265 | // For default PowerShell Windows it should contain extension type to unpack it. |
| 266 | export function renameWinArchive(javaArchivePath: string): string { |
| 267 | const javaArchivePathRenamed = `${javaArchivePath}.zip`; |
| 268 | fs.renameSync(javaArchivePath, javaArchivePathRenamed); |
| 269 | return javaArchivePathRenamed; |
| 270 | } |
no outgoing calls
no test coverage detected