Skip to content
Snippets Groups Projects
Commit 60e4367d authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- prevent double output when the working dir could not be created

parent d9001a4a
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,7 @@ $paths = ensureDirs($rootDir, $transactionKey);
if ($paths === FALSE) {
endTransaction($conn, $config, $transactionKey, $rootDirName);
output($status_code_FileSystemIssue, "could not create dirs");
output($status_code_FileSystemIssue, "could not create dir(s)");
exit(1);
}
......
......@@ -318,11 +318,14 @@ function ensureDirs($currentRootDirName, $tempUserDirName)
# use 777 so that every user can access e.g. if we use firejail with starts as another user...
if (mkdir($fullWorkingDirPath, 0755, TRUE) === FALSE) {
# we output this in the calling method
if ($isDebug) {
# os this will throw in the frontend but this is ok for debug...
output($status_code_FileSystemIssue, 'could not create directory: ' . $fullWorkingDirPath);
} else {
output($status_code_FileSystemIssue, 'could not create directory');
}
#else {
# output($status_code_FileSystemIssue, 'could not create directory');
#}
#umask($old);
return FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment