Tidy debug message for generator
This commit is contained in:
parent
ecb3067e78
commit
f155a67696
5
qsgen2
5
qsgen2
@ -118,7 +118,6 @@ fi
|
|||||||
|
|
||||||
if [[ ${generator} == "native" ]]; then
|
if [[ ${generator} == "native" ]]; then
|
||||||
# Usage: ${engine} ${1} - Where 1 is the file you want to convert
|
# Usage: ${engine} ${1} - Where 1 is the file you want to convert
|
||||||
if (${debug}) echo "${red}Using the ${generator} engine${end}"
|
|
||||||
engine=_html
|
engine=_html
|
||||||
elif [[ ${generator} == "markdown" ]]; then
|
elif [[ ${generator} == "markdown" ]]; then
|
||||||
if [[ ! -f /usr/bin/markdown ]]; then
|
if [[ ! -f /usr/bin/markdown ]]; then
|
||||||
@ -126,12 +125,12 @@ elif [[ ${generator} == "markdown" ]]; then
|
|||||||
exit
|
exit
|
||||||
else
|
else
|
||||||
# Usage: ${engine} ${1} ${2} - Where 1 is the input file and 2 is the html www_root file and location
|
# Usage: ${engine} ${1} ${2} - Where 1 is the input file and 2 is the html www_root file and location
|
||||||
if (${debug}) echo "${red}Using the ${generator} engine${end}"
|
|
||||||
engine=$( /usr/bin/markdown -o ${2} ${1} )
|
engine=$( /usr/bin/markdown -o ${2} ${1} )
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
if (${debug}) echo "${red}Using the ${generator} engine${end}"
|
||||||
|
|
||||||
# Define cache files
|
# Define cache files for blogs and pages
|
||||||
blog_cache_file="${project_dir}/.blog_cache"
|
blog_cache_file="${project_dir}/.blog_cache"
|
||||||
pages_cache_file="${project_dir}/.pages_cache"
|
pages_cache_file="${project_dir}/.pages_cache"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user