aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-09-03 00:46:17 +1000
committeronefang2021-09-03 00:46:17 +1000
commitd7f3cd2ffc41fbfe262030e00bc5f56c23c3def9 (patch)
tree6bbe2ac321bbf8b197cad65b57494112a11a8d22
parentUnsimplify failed cp experiment. (diff)
downloadopensim-SC-d7f3cd2ffc41fbfe262030e00bc5f56c23c3def9.zip
opensim-SC-d7f3cd2ffc41fbfe262030e00bc5f56c23c3def9.tar.gz
opensim-SC-d7f3cd2ffc41fbfe262030e00bc5f56c23c3def9.tar.bz2
opensim-SC-d7f3cd2ffc41fbfe262030e00bc5f56c23c3def9.tar.xz
One more try at the dot file problem.
Diffstat (limited to '')
-rw-r--r--src/sledjchisl/sledjchisl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 89c16fc..4c1022d 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -2024,9 +2024,10 @@ static void copyOpenSim(char *t)
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 if (shellMeFail("cd %s; cp -al %s/current/.git* -t %s ", scRoot, scRoot, t)) C("Failed to cp!"); 2027 if (shellMeFail("cd %s; cp -al %s/current/.??* -t %s ", scRoot, scRoot, t)) C("Failed to cp!");
2028 if (shellMeFail("cd %s; cp -al %s/current/.nant -t %s ", scRoot, scRoot, t)) C("Failed to cp!"); 2028// if (shellMeFail("cd %s; cp -al %s/current/.git* -t %s ", scRoot, scRoot, t)) C("Failed to cp!");
2029 if (shellMeFail("cd %s; cp -al %s/current/.hgignore -t %s ", scRoot, scRoot, t)) C("Failed to cp!"); 2029// if (shellMeFail("cd %s; cp -al %s/current/.nant -t %s ", scRoot, scRoot, t)) C("Failed to cp!");
2030// if (shellMeFail("cd %s; cp -al %s/current/.hgignore -t %s ", scRoot, scRoot, t)) C("Failed to cp!");
2030} 2031}
2031 2032
2032static void runTests(char *tests[], char *title, char* file) 2033static void runTests(char *tests[], char *title, char* file)