Skip to content

Commit 9f18659

Browse files
Trigger build
1 parent 6bb2172 commit 9f18659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/hudson/FilePath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ private static void unzip(File dir, File zipFile) throws IOException {
716716
try {
717717
FilePath target = new FilePath(f);
718718
int mode = e.getUnixMode();
719-
if (mode != 0) // Ant returns 0 if the archive doesn't record the access mode
719+
if (mode != 0) // Ant returns 0 if the archive doesn't record the access mode
720720
target.chmod(mode);
721721
} catch (InterruptedException | NoSuchFileException ex) {
722722
LOGGER.log(Level.WARNING, "unable to set permissions", ex);

0 commit comments

Comments
 (0)