qsgen2: Silly bug...

This commit is contained in:
Stig-Ørjan Smelror 2024-02-14 17:34:13 +01:00
parent 3caae5c274
commit db37cacd49

7
qsgen2
View File

@ -131,6 +131,10 @@ elif [[ "$1" == "help" || "$1" == "-h" || "$1" == "--help" ]]; then
_help ${0:t} _help ${0:t}
fi fi
# Define cache files for blogs and pages
blog_cache_file="${project_dir}/.blog_cache"
pages_cache_file="${project_dir}/.pages_cache"
case ${1} in case ${1} in
force) force)
_msg sub "_qsgen2_msg_2" _msg sub "_qsgen2_msg_2"
@ -176,9 +180,6 @@ builtin cd ${project_dir}
# Let's put these here for now. # Let's put these here for now.
export today=$(strftime "%Y-%m-%d - %T") export today=$(strftime "%Y-%m-%d - %T")
export blogdate=$(strftime "%a-%Y-%b-%d") export blogdate=$(strftime "%a-%Y-%b-%d")
# Define cache files for blogs and pages
blog_cache_file="${project_dir}/.blog_cache"
pages_cache_file="${project_dir}/.pages_cache"
# Let's create arrays of all the files we'll be working on # Let's create arrays of all the files we'll be working on