Skip to content

Commit

Permalink
add html help script for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Chunosov committed Nov 27, 2021
1 parent bf758c8 commit fe0c8e7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions help/make_html.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#! /bin/bash

echo "Build application manual (HTML version)."

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
. ${SCRIPT_DIR}/../scripts/helpers.sh
cd ${SCRIPT_DIR}/..

SOURCE_DIR=${SCRIPT_DIR}
TARGET_DIR=${SCRIPT_DIR}/../out/help_html

print_header "Building html files..."
python3 -m sphinx -b html ${SOURCE_DIR} ${TARGET_DIR}
exit_if_fail

print_done

0 comments on commit fe0c8e7

Please sign in to comment.