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