Skip to content

Commit

Permalink
scripts: don't refresh the pacman repository on Arch
Browse files Browse the repository at this point in the history
Fixes #12186

Signed-off-by: Chris Palmer <cpalmer@tailscale.com>
  • Loading branch information
Chris Palmer committed May 19, 2024
1 parent 964282d commit 0614988
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,10 @@ main() {
;;
pacman)
set -x
$SUDO pacman -Sy
# https://github.com/tailscale/tailscale/issues/12186
if [ "$OS" != "arch" ]; then
$SUDO pacman -Sy
fi
$SUDO pacman -S tailscale --noconfirm
$SUDO systemctl enable --now tailscaled
set +x
Expand Down

0 comments on commit 0614988

Please sign in to comment.