aboutsummaryrefslogtreecommitdiff
path: root/share/templater/jekyll
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
commitca223571c8548fda2e6571daf497482d8d236362 (patch)
tree86daa0f8eba8222b7d5ff85c0b4e101795b7c450 /share/templater/jekyll
parentf6851134c07c74554437db5be4abb13cafafc1b6 (diff)
downloadtemplater-ca223571c8548fda2e6571daf497482d8d236362.tar.gz
templater-ca223571c8548fda2e6571daf497482d8d236362.tar.bz2
Rename __templater_ functions to templater_
Diffstat (limited to 'share/templater/jekyll')
-rwxr-xr-xshare/templater/jekyll/setup6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/templater/jekyll/setup b/share/templater/jekyll/setup
index 43e940d..ad2660c 100755
--- a/share/templater/jekyll/setup
+++ b/share/templater/jekyll/setup
@@ -12,15 +12,15 @@ source $SHARE/templater/functions || exit 1
# Jekyll implementation
function templater_jekyll {
if [ ! -e "_config.yml" ]; then
- __templater_echo "Setting up Jekyll..."
+ templater_echo "Setting up Jekyll..."
if which jekyll &> /dev/null; then
jekyll new .
else
- __templater_echo "Jekyll not available, please install it, skipping"
+ templater_echo "Jekyll not available, please install it, skipping"
fi
else
- __templater_echo "Jekyll already set"
+ templater_echo "Jekyll already set"
fi
}