2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-23 15:08:24 +00:00

Fix on install_wkhtmltopdf_centos

Typo error on if [[ $OS == "centos" && $OS_VER == "7" && $T_ARCH="i386" ]]; then
This commit is contained in:
Adam Tang 2014-11-27 09:33:32 +08:00
parent a54bc1174b
commit 2de851b4c6

View File

@ -194,7 +194,7 @@ install_packages() {
install_wkhtmltopdf_centos () { install_wkhtmltopdf_centos () {
if [[ $OS == "centos" && $OS_VER == "7" && $T_ARCH="i386" ]]; then if [[ $OS == "centos" && $OS_VER == "7" && $T_ARCH == "i386" ]]; then
echo "Cannot install wkhtmltodpdf. Skipping..." echo "Cannot install wkhtmltodpdf. Skipping..."
return 0 return 0
fi fi