From 62b4fe645b739a12b16842f33f00dcec0d792e67 Mon Sep 17 00:00:00 2001 From: fivepiece Date: Sat, 21 Jul 2018 12:04:50 +0300 Subject: [PATCH] escape regex for '.' --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7300b46..4f9b0bf 100755 --- a/install.sh +++ b/install.sh @@ -361,7 +361,7 @@ qt_deps_link () deb_qt_deps_link () { pyqt4dir="$( dpkg-query -L python-qt4 | grep -m1 "/PyQt4$" )" - sip_so="$( dpkg-query -L python-sip | grep -m1 "sip.*.so" )" + sip_so="$( dpkg-query -L python-sip | grep -m1 "sip.*\.so" )" if [[ -r "${pyqt4dir}" ]] && [[ -r ${sip_so} ]]; then ln -sf -t "${VIRTUAL_ENV}/lib/python2.7/site-packages/" "${sip_so}" "${pyqt4dir}"