diff options
author | Harpreet | 2016-02-05 10:57:46 +0530 |
---|---|---|
committer | Harpreet | 2016-02-05 10:57:46 +0530 |
commit | 7996c2704975d61e03cfb4204cfb8e202367a448 (patch) | |
tree | ec7bc84483e529e58daa2aa54bfb22316c7a4749 /help | |
parent | 29845c2fff5d9aa7fd6655ccba6a5c98a5b9fc0e (diff) | |
download | FOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.tar.gz FOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.tar.bz2 FOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.zip |
cleaner.sce deleted
Diffstat (limited to 'help')
-rw-r--r-- | help/cleaner_help.sce | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/help/cleaner_help.sce b/help/cleaner_help.sce deleted file mode 100644 index a2b5e7e..0000000 --- a/help/cleaner_help.sce +++ /dev/null @@ -1,21 +0,0 @@ -// This file is released under the 3-clause BSD license. See COPYING-BSD. - -function cleaner_help() - path = get_absolute_file_path("cleaner_help.sce"); - langdirs = dir(path); - langdirs = langdirs.name(langdirs.isdir); - - for l = 1:size(langdirs, "*") - masterfile = fullpath(path + filesep() + langdirs(l) + "/master_help.xml"); - mdelete(masterfile); - - jarfile = fullpath(path + "/../jar/scilab_" + langdirs(l) + "_help.jar"); - mdelete(jarfile); - - tmphtmldir = fullpath(path + "/" + langdirs(l) + "/scilab_" + langdirs(l) + "_help"); - rmdir(tmphtmldir, "s"); - end -endfunction - -cleaner_help(); -clear cleaner_help; |