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 ca615b9 commit c764597Copy full SHA for c764597
install/hst-install-debian.sh
@@ -636,7 +636,11 @@ echo
636
# Installing Nginx repo
637
638
echo "[ * ] NGINX"
639
-echo "deb [arch=$ARCH] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
+if [ "$release" -eq 11 ]; then
640
+ echo " Skip nginx repo, not available yet."
641
+else
642
+ echo "deb [arch=$ARCH] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
643
+fi
644
apt-key adv --fetch-keys 'https://nginx.org/keys/nginx_signing.key' > /dev/null 2>&1
645
646
# Installing sury PHP repo
0 commit comments