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 committed by Maximilian Luz
parent 4d026f53b9
commit 77cf8159e1
No known key found for this signature in database
GPG key ID: 70EC0937F6C26F02

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)