We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53240fc commit caab614Copy full SHA for caab614
ubuntu-mainline-kernel.sh
@@ -92,7 +92,7 @@ action_data=()
92
## Check if we are running on an Ubuntu-like OS
93
#####
94
95
-# shellcheck disable=SC2015
+# shellcheck disable=SC1091,SC2015
96
[ -f "/etc/os-release" ] && {
97
source /etc/os-release
98
[[ "$ID" == "ubuntu" ]] || [[ "$ID_LIKE" =~ "ubuntu" ]]
@@ -279,6 +279,7 @@ download () {
279
$wget -q --save-headers --output-document - "https://$host$uri"
280
else
281
exec 3<>/dev/tcp/"$host"/80
282
+ # shellcheck disable=SC1117
283
echo -e "GET $uri HTTP/1.0\r\nHost: $host\r\nConnection: close\r\n\r\n" >&3
284
cat <&3
285
fi
0 commit comments