Skip to content

Commit 4ab4879

Browse files
committed
fix travis-install.sh permission issue
1 parent b1b5200 commit 4ab4879

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

travis-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

33
# install 'libuv'
4-
git clone --recursive https://github.com/joyent/libuv.git
4+
git clone --recursive --depth=1:w https://github.com/joyent/libuv.git
55
pushd libuv
66
git checkout v1.0.0-rc2
7-
/bin/bash ./autogen.sh && ./configure && make && make install
7+
./autogen.sh && ./configure && make && make install
88
popd
99

1010
#install 'php-uv'

0 commit comments

Comments
 (0)