diff options
author | avinashlalotra | 2025-03-19 12:24:42 +0530 |
---|---|---|
committer | avinashlalotra | 2025-03-19 12:24:42 +0530 |
commit | b1e9bf3dd7e4561108b9da588a7c24b736cfab2a (patch) | |
tree | 1ed1d2589347ff22620e284d5775f01859e6faa5 /etc/FOSSEE_Signal_Processing_Toolbox.start | |
parent | 6fb862b9d124641cc8cda6f2adf92af7049ce8d8 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-b1e9bf3dd7e4561108b9da588a7c24b736cfab2a.tar.gz FOSSEE-Signal-Processing-Toolbox-b1e9bf3dd7e4561108b9da588a7c24b736cfab2a.tar.bz2 FOSSEE-Signal-Processing-Toolbox-b1e9bf3dd7e4561108b9da588a7c24b736cfab2a.zip |
dd_help_chapter: error fixed while loading toolbox
Diffstat (limited to 'etc/FOSSEE_Signal_Processing_Toolbox.start')
-rw-r--r-- | etc/FOSSEE_Signal_Processing_Toolbox.start | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/FOSSEE_Signal_Processing_Toolbox.start b/etc/FOSSEE_Signal_Processing_Toolbox.start index a450282..8a352b9 100644 --- a/etc/FOSSEE_Signal_Processing_Toolbox.start +++ b/etc/FOSSEE_Signal_Processing_Toolbox.start @@ -5,7 +5,9 @@ // you should have received as part of this distribution. The terms // are also available at // https://opensource.org/licenses/BSD-3-Clause -// Author: Shamika Mohanan +// Author: Shamika Mohanan +// Modified by: Abinash Singh Under FOSSEE Internship +// Last Modified On: 19 March 2024 // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in @@ -36,7 +38,11 @@ ilib_verbose(0); // Load and add help chapter // ============================================================================= -if ( %t ) then +if ( %t ) then +// create jar dir if not exists +if ( isdir(root_tlbx+"/jar") == %f ) then + mkdir(root_tlbx+"/jar"); +end if or(getscilabmode() == ["NW";"STD"]) then mprintf("\tLoad help\n"); path_addchapter = pathconvert(root_tlbx+"/jar"); |