Skip to content

Commit 9345d40

Browse files
committed
Fix if condition
1 parent a9efbd2 commit 9345d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/compile-extension-memcached

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -o errexit
44
source $(dirname $0)/compile-extensions-common
55

66
function install_memcache() {
7-
if [ $(lsb_release -cs) = 'precise' || $(lsb_release -cs) = 'trusty' ]; then
7+
if [[ $(lsb_release -cs) = 'precise' || $(lsb_release -cs) = 'trusty' ]]; then
88
pushd /tmp
99
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
1010
tar xzf libmemcached-1.0.18.tar.gz

0 commit comments

Comments
 (0)