Minor change to an elif

This commit is contained in:
Stig-Ørjan Smelror 2024-01-30 10:30:15 +01:00
parent 44cf4d137e
commit 8fe37fb41f

4
qsgen2
View File

@ -431,7 +431,7 @@ function _blogs() {
blog_url="${blog_dir}/${blog_index}.html" blog_url="${blog_dir}/${blog_index}.html"
# Regular blog creation process # Regular blog creation process
if [[ -z "${mode}" ]]; then if [[ -z ${mode} ]]; then
for blog in "${make_blog_array[@]}"; do for blog in "${make_blog_array[@]}"; do
if (${debug}) echo "_blogs: Processing ${blog}" if (${debug}) echo "_blogs: Processing ${blog}"
@ -460,7 +460,7 @@ function _blogs() {
# Write to file # Write to file
echo "${blog_content}" > "${www_root}${blog_url}" echo "${blog_content}" > "${www_root}${blog_url}"
elif [[ ${mode} || ${mode} != "" ]]; then elif [[ ${mode} ]]; then
# Export metadata mode # Export metadata mode
if (${debug}) echo "_blogs: Exporting metadata for ${blog}" if (${debug}) echo "_blogs: Exporting metadata for ${blog}"
export BLOG_SDATE="${sdate[@]}" export BLOG_SDATE="${sdate[@]}"