aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/sledjchisl/sledjchisl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 6a1800e..61f2ee8 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -2021,7 +2021,7 @@ static int filterARs(struct dirtree *node)
2021static void copyOpenSim(char *t) 2021static void copyOpenSim(char *t)
2022{ 2022{
2023 if (shellMeFail("rm -fr ", t)) E("Failed to rm!"); 2023 if (shellMeFail("rm -fr ", t)) E("Failed to rm!");
2024// if ((! qfile_exist(t)) && (! qfile_mkdir(t, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", t); 2024 if ((! qfile_exist(t)) && (! qfile_mkdir(t, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", t);
2025// TODO - have to make sure it's all owned by opensimsc. 2025// TODO - have to make sure it's all owned by opensimsc.
2026 if (shellMeFail("cd %s; cp -al %s/current/ -t %s/ ", scRoot, scRoot, t)) C("Failed to cp!"); 2026 if (shellMeFail("cd %s; cp -al %s/current/ -t %s/ ", scRoot, scRoot, t)) C("Failed to cp!");
2027} 2027}