aboutsummaryrefslogtreecommitdiff
path: root/share/templater/hugo/setup
diff options
context:
space:
mode:
Diffstat (limited to 'share/templater/hugo/setup')
-rwxr-xr-xshare/templater/hugo/setup6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/templater/hugo/setup b/share/templater/hugo/setup
index bdc7285..8f9ce06 100755
--- a/share/templater/hugo/setup
+++ b/share/templater/hugo/setup
@@ -12,15 +12,15 @@ source $SHARE/templater/functions || exit 1
# Hugo implementation
function templater_hugo {
if [ ! -e "config.toml" ]; then
- __templater_echo "Setting up Hugo..."
+ templater_echo "Setting up Hugo..."
if which hugo &> /dev/null; then
hugo new site .
else
- __templater_echo "Hugo not available, please install it, skipping"
+ templater_echo "Hugo not available, please install it, skipping"
fi
else
- __templater_echo "Hugo already set"
+ templater_echo "Hugo already set"
fi
}