# HG changeset patch # User simonis # Date 1417788161 -3600 # Node ID 614996fd5828de6d929b0426f17adae78ae0faab # Parent 521dd15c6e06aeb13b5c003c04f257c5867ba0a5 8066766: The commands in the modular images are executable by the owner only diff --git a/make/src/classes/build/tools/module/ModuleArchive.java b/make/src/classes/build/tools/module/ModuleArchive.java --- a/make/src/classes/build/tools/module/ModuleArchive.java +++ b/make/src/classes/build/tools/module/ModuleArchive.java @@ -194,7 +194,7 @@ case CMDS: Path path = destFile("bin", filename); writeEntry(in, path); - path.toFile().setExecutable(true); + path.toFile().setExecutable(true, false); break; case CONFIGS: writeEntry(in, destFile("conf", filename));