diff options
Diffstat (limited to 'share/templater/jekyll/setup')
-rwxr-xr-x | share/templater/jekyll/setup | 6 |
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 } |