Browse Source

Changed WRK installation to grab from tarball instead of through git

Steven Smith 9 years ago
parent
commit
38f6b5c05d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      toolset/setup/linux/client.sh

+ 3 - 3
toolset/setup/linux/client.sh

@@ -21,9 +21,9 @@ sudo sh -c "echo '*               -    nofile          65535' >> /etc/security/l
 # wrk
 ##############################
 
-git clone https://github.com/wg/wrk.git
-cd wrk
-git checkout a20969192f7bc095ad3ad3e238a9a581e64ae4f9
+curl -sL -o wrk-4.0.1.tar.gz https://github.com/wg/wrk/archive/4.0.1.tar.gz
+tar xzf wrk-4.0.1.tar.gz
+cd wrk-4.0.1
 make
 sudo cp wrk /usr/local/bin
 cd ~