Skip to content

Commit 25b45e7

Browse files
committed
the * means both the tgz and directory are captured
1 parent 5154e53 commit 25b45e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/compile-extension-memcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ travis_time_start
77

88
if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^master$ ]]; then
99
pecl download memcache-beta
10-
tar zxvf memcache*.tgz && pushd memcache*
10+
tar zxvf memcache*.tgz && pushd memcache*/
1111
make clean || true
1212
phpize
1313
./configure && make && make install

bin/compile-extension-memcached

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ install_memcache
1919

2020
if [[ $VERSION =~ ^7 || $VERSION =~ ^master$ ]]; then
2121
pecl download memcached-3.1.2
22-
tar zxvf memcached*.tgz && pushd memcached*
22+
tar zxvf memcached*.tgz && pushd memcached*/
2323
make clean || true
2424
else
2525
pecl download memcached-2.2.0
26-
tar zxvf memcached*.tgz && pushd memcached*
26+
tar zxvf memcached*.tgz && pushd memcached*/
2727
make clean || true
2828
fi
2929
phpize

0 commit comments

Comments
 (0)