if `~/public_html/blog` doesn't exist then the script never moves to it and creates all html/blog files in current pwd
This commit is contained in:
rany 2020-09-01 01:16:21 +00:00 committed by Gitea
parent b92931519a
commit d62085770a
1 changed files with 2 additions and 2 deletions

4
bb.sh
View File

@ -1093,8 +1093,8 @@ date_version_detect() {
# $2 file name of a draft to continue editing (optional) # $2 file name of a draft to continue editing (optional)
do_main() { do_main() {
# make sure we're in the right directory # make sure we're in the right directory
[ $(pwd) != $HOME/public_html/blog ] && [ $(pwd) != $HOME/public_html/blog ] &&
echo "you're not in your blog directory. moving you there now" && cd $HOME/public_html/blog echo "you're not in your blog directory. moving you there now" && mkdir -p $HOME/public_html/blog && cd $HOME/public_html/blog
# Detect if using BSD date or GNU date # Detect if using BSD date or GNU date
date_version_detect date_version_detect