Syntax Fixes
parent
689afd9b3d
commit
db5a47eb68
|
|
@ -1,6 +1,6 @@
|
||||||
# Open the root of your site in your vim or cd to it
|
# Open the root of your site in your vim or cd to it
|
||||||
|
|
||||||
if [ $EDITOR = "vim"]
|
if [ $EDITOR = "vim" ]
|
||||||
then
|
then
|
||||||
alias newentry="cd $JEKYLL_LOCAL_ROOT && $EDITOR ."
|
alias newentry="cd $JEKYLL_LOCAL_ROOT && $EDITOR ."
|
||||||
else
|
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)
|
# 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
|
then
|
||||||
alias newpost="cd $JEKYLL_LOCAL_ROOT/_posts && $EDITOR ."
|
alias newpost="cd $JEKYLL_LOCAL_ROOT/_posts && $EDITOR ."
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue