Point the setup script at qzed's repository.

Signed-off-by: Dorian Stoll <dorian.stoll@tmsp.io>
This commit is contained in:
Dorian Stoll 2019-09-17 22:00:41 +02:00
parent 94f5e5fbfb
commit c7f1b6d74d
No known key found for this signature in database
GPG key ID: F1DACD02C619442A

View file

@ -115,7 +115,7 @@ read -rp "Do you want this script to download and install the latest kernel for
if [ "$autoinstallkernel" = "yes" ]; then
echo "Downloading latest kernel...\n"
urls=$(curl --silent "https://api.github.com/repos/jakeday/linux-surface/releases/latest" | tr ',' '\n' | grep '"browser_download_url":' | sed -E 's/.*"([^"]+)".*/\1/')
urls=$(curl --silent "https://api.github.com/repos/qzed/linux-surface/releases/latest" | tr ',' '\n' | grep '"browser_download_url":' | sed -E 's/.*"([^"]+)".*/\1/' | grep '.deb$')
resp=$(wget -P tmp $urls)