From 7fd456be8f757d869af89c6fbaf30919fef7ac5b Mon Sep 17 00:00:00 2001 From: JRGJON Date: Fri, 7 Oct 2016 17:16:34 +0530 Subject: Help documentation only for GUI mode Help documentation fails to build in nwni mode as the documentation are based on Java features which are not available in the mode. rectified by making it available only for GUI mode.--- builder.sce | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/builder.sce b/builder.sce index e1f4760..55df1b5 100644 --- a/builder.sce +++ b/builder.sce @@ -32,7 +32,11 @@ toolbox_dir = get_absolute_file_path("builder.sce"); tbx_builder_macros(toolbox_dir); tbx_builder_gateway(toolbox_dir); -tbx_builder_help(toolbox_dir); + +if getscilabmode()=="STD" then + tbx_builder_help(toolbox_dir); +end + tbx_build_loader(TOOLBOX_NAME, toolbox_dir); tbx_build_cleaner(TOOLBOX_NAME, toolbox_dir); -- cgit