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