We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8beed9b commit f32ef37Copy full SHA for f32ef37
os/src/ZipOps.scala
@@ -353,8 +353,10 @@ object unzip {
353
case _: FileSystemException => {
354
System.err.println(
355
s"Failed to create symbolic link ${zipEntry.getName} -> ${target}.\n" +
356
- (if (isWin) "On Windows this might be due to lack of sufficient privilege or file system support.\n" else "") +
357
- "This zip entry will be unzipped as a text file containing the target path."
+ (if (isWin)
+ "On Windows this might be due to lack of sufficient privilege or file system support.\n"
358
+ else "") +
359
+ "This zip entry will instead be unzipped as a file containing the target path."
360
)
361
os.write(newFile, target)
362
}
0 commit comments