From 7ec0918ef7f6b2728128d4ca13da53ca7fd75d01 Mon Sep 17 00:00:00 2001 From: JRGJON Date: Fri, 7 Oct 2016 17:25:23 +0530 Subject: Help documentation only for GUI mode Help documentation fails to build in cli-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