Skip to content

Commit 833d022

Browse files
committed
🐛 Install sshuttle using pip instead of from source
1 parent 2e5c4b1 commit 833d022

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

hack/ci/create_devstack.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,7 @@ function wait_for_ssh {
9494
function start_sshuttle {
9595
if ! command -v sshuttle;
9696
then
97-
# Install sshuttle from source because we need: https://github.com/sshuttle/sshuttle/pull/661
98-
# TODO(sbueringer) install via pip after the next release after 1.0.5 via:
99-
# pip3 install sshuttle
100-
pushd /tmp
101-
git clone https://github.com/sshuttle/sshuttle.git
102-
cd sshuttle
103-
pip3 install .
104-
popd || exit 1
97+
pip3 install sshuttle
10598
fi
10699

107100
kill_sshuttle

0 commit comments

Comments
 (0)