aboutsummaryrefslogtreecommitdiff
path: root/share/templater/sphinx/setup
diff options
context:
space:
mode:
Diffstat (limited to 'share/templater/sphinx/setup')
-rwxr-xr-xshare/templater/sphinx/setup10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/templater/sphinx/setup b/share/templater/sphinx/setup
index b378ac3..04d5007 100755
--- a/share/templater/sphinx/setup
+++ b/share/templater/sphinx/setup
@@ -12,14 +12,14 @@ source $SHARE/templater/functions || exit 1
# Sphinx implementation
function templater_sphinx {
if [ ! -e "conf.py" ]; then
- __templater_echo "Setting up sphinx..."
+ templater_echo "Setting up sphinx..."
- #__templater_checkout_develop
- __templater_copy_or_append sphinx .gitignore
+ #templater_checkout_develop
+ templater_copy_or_append sphinx .gitignore
cp $SHARE/sphinx/files/conf.py .
- __templater_install_makefile $SHARE/sphinx/files/Makefile.sphinx
+ templater_install_makefile $SHARE/sphinx/files/Makefile.sphinx
if [ ! -d "_static" ]; then
cp -r $SHARE/sphinx/files/_static .
@@ -30,7 +30,7 @@ function templater_sphinx {
git submodule add https://github.com/snide/sphinx_rtd_theme _themes/sphinx_rtd_theme
fi
else
- __templater_echo "Sphinx already set"
+ templater_echo "Sphinx already set"
fi
}