scripts/installer.sh: remove unnecessary escaping in grep (#11950)

Updates #11263

Signed-off-by: Andrew Lytvynov <awly@tailscale.com>
This commit is contained in:
Andrew Lytvynov
2024-05-01 10:09:10 -07:00
committed by GitHub
parent 843afe7c53
commit 13e1355546
2 changed files with 5 additions and 3 deletions

View File

@@ -527,7 +527,7 @@ main() {
;;
apk)
set -x
if ! grep -Eq '^http.*\/community$' /etc/apk/repositories; then
if ! grep -Eq '^http.*/community$' /etc/apk/repositories; then
if type setup-apkrepos >/dev/null; then
$SUDO setup-apkrepos -c -1
else