mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +00:00
Remove -f from chmod
This commit is contained in:
parent
d07d59ad7d
commit
7c095cea4c
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ public class XPipeTempDirectory {
|
|||
"Unable to access or create temporary directory " + dir);
|
||||
|
||||
if (proc.getOsType().equals(OsType.LINUX) || proc.getOsType().equals(OsType.MACOS)) {
|
||||
proc.executeSimpleCommand("chmod -f 777 \"" + dir + "\"");
|
||||
proc.executeBooleanSimpleCommand("chmod 777 \"" + dir + "\"");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue