6 lines
195 B
Bash
6 lines
195 B
Bash
|
#!/bin/bash
|
||
|
contextRoot="$(mktemp -d)";
|
||
|
git clone https://git.nuth.ch/manuth/arch-networkmanager-openconnect-unsafe-crypto.git "$contextRoot";
|
||
|
. "$contextRoot/install.sh";
|
||
|
rm -rf "$contextRoot";
|