mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2025-03-14 12:22:46 +00:00

* try to fix travis build * try to use bionic somehow * try again to fix travis * need libssh for travis too * install newer libssh too * be less verbose in travis script
9 lines
180 B
Bash
Executable file
9 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
wget 'https://www.libssh.org/files/0.8/libssh-0.8.5.tar.xz'
|
|
tar -xJf libssh-0.8.5.tar.xz
|
|
mkdir libssh-build
|
|
cd libssh-build
|
|
cmake ../libssh-0.8.5
|
|
make
|
|
sudo make install
|