diff --git a/README.md b/README.md index 39e7024..4a8f3da 100644 --- a/README.md +++ b/README.md @@ -87,12 +87,8 @@ Install [globalprotect-openconnect](https://aur.archlinux.org/packages/globalpro ```sh git clone https://github.com/yuezk/GlobalProtect-openconnect.git cd GlobalProtect-openconnect -git submodule update --init -# qmake or qmake-qt5 -qmake CONFIG+=release -make -sudo make install +./scripts/install.sh ``` Open `GlobalProtect VPN` in the application dashboard. diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100755 index 0000000..79c5a80 --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,5 @@ +#!/bin/bash -e + +./cmakew -B build +./cmakew --build build +sudo ./cmakew --install build \ No newline at end of file