From: Mark Szymanski Date: Fri, 24 Jun 2011 22:45:13 +0000 (-0500) Subject: Get rid of old jekyll aliases X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=5af99be158656bbcb5f4d56fb799e3313837bb53;p=common%2Fbash_it.git Get rid of old jekyll aliases --- diff --git a/aliases/available/jekyll.aliases.bash b/aliases/available/jekyll.aliases.bash deleted file mode 100644 index e52c035..0000000 --- a/aliases/available/jekyll.aliases.bash +++ /dev/null @@ -1,20 +0,0 @@ -# Open the root of your site in your vim or builtin cd to it - -if [[ $EDITOR = "vim" ]] -then - alias newentry="builtin cd $JEKYLL_LOCAL_ROOT && $EDITOR ." -else - alias newentry="builtin cd $JEKYLL_LOCAL_ROOT" -fi - -# Build and locally serve the site - -alias testsite="builtin cd $JEKYLL_LOCAL_ROOT && jekyll --server --auto" - -# Build but don't locally serve the site - -alias buildsite="builtin cd $JEKYLL_LOCAL_ROOT && rm -rf _site/ && jekyll" - -# Rsync the site to the remote server - -alias deploysite="builtin cd $JEKYLL_LOCAL_ROOT && rsync -rz _site/ $JEKYLL_REMOTE_ROOT"