From c98d1430eb2778d2e01e1c9b75cd97e54b07c800 Mon Sep 17 00:00:00 2001 From: onefang Date: Fri, 3 Sep 2021 02:43:56 +1000 Subject: Don't create the AssetsFiles directories. --- src/sledjchisl/sledjchisl.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index 3d7b336..3269f60 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c @@ -8570,12 +8570,12 @@ Build the OpenSim. tmp = xmprintf("%s/config", scRoot); if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); free(tmp); - tmp = xmprintf("%s/AssetFiles/data", scRoot); - if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); - free(tmp); - tmp = xmprintf("%s/AssetFiles/tmp/spool", scRoot); - if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); - free(tmp); +// tmp = xmprintf("%s/AssetFiles/data", scRoot); +// if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); +// free(tmp); +// tmp = xmprintf("%s/AssetFiles/tmp/spool", scRoot); +// if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); +// free(tmp); tmp = xmprintf("%s/web", scRoot); if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); free(tmp); -- cgit v1.1