File tree 1 file changed +2
-2
lines changed
src/main/java/com/google/devtools/build/lib/unix
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ public boolean createDirectory(PathFragment path) throws IOException {
335
335
// Use 0777 so that the permissions can be overridden by umask(2).
336
336
// Note: UNIX mkdir(2), FilesystemUtils.mkdir() and createDirectory all
337
337
// have different ways of representing failure!
338
- if (NativePosixFiles .mkdir (path .toString (), 0755 )) {
338
+ if (NativePosixFiles .mkdir (path .toString (), 0777 )) {
339
339
return true ; // successfully created
340
340
}
341
341
@@ -355,7 +355,7 @@ protected boolean createWritableDirectory(PathFragment path) throws IOException
355
355
@ Override
356
356
public void createDirectoryAndParents (PathFragment path ) throws IOException {
357
357
// Use 0777 so that the permissions can be overridden by umask(2).
358
- NativePosixFiles .mkdirs (path .toString (), 0755 );
358
+ NativePosixFiles .mkdirs (path .toString (), 0777 );
359
359
}
360
360
361
361
@ Override
You can’t perform that action at this time.
0 commit comments