Syntax Fixes
authorMark Szymanski <mrman208@me.com>
Tue, 2 Nov 2010 01:06:57 +0000 (20:06 -0500)
committerMark Szymanski <mrman208@me.com>
Tue, 2 Nov 2010 01:06:57 +0000 (20:06 -0500)
aliases/jekyll.aliases.bash

index 0e1e3e7..4e0d740 100644 (file)
@@ -1,6 +1,6 @@
 # Open the root of your site in your vim or cd to it
 
-if [ $EDITOR = "vim"]
+if [ $EDITOR = "vim" ]
 then
        alias newentry="cd $JEKYLL_LOCAL_ROOT && $EDITOR ."
 else
@@ -9,7 +9,7 @@ fi
 
 # Open the _posts/ directory for making a new blog post (seperate from above alias because not everyone uses jekyll for a blog)
 
-if [ $EDITOR = "vim"]
+if [ $EDITOR = "vim" ]
 then
        alias newpost="cd $JEKYLL_LOCAL_ROOT/_posts && $EDITOR ."
 else