From 8372cefdf3b0aec13856cfe8eb4fb833cb8bb78a Mon Sep 17 00:00:00 2001 From: Samuel Dion-Girardeau Date: Wed, 19 Jan 2022 19:16:10 -0500 Subject: [PATCH] Use newer install URL in install script --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index d61320b..6554c6f 100644 --- a/install.sh +++ b/install.sh @@ -9,9 +9,9 @@ if [ ! "$(command -v chezmoi)" ]; then bin_dir="$HOME/.local/bin" chezmoi="$bin_dir/chezmoi" if [ "$(command -v curl)" ]; then - sh -c "$(curl -fsSL https://git.io/chezmoi)" -- -b "$bin_dir" + sh -c "$(curl -fsSL chezmoi.io/get)" -- -b "$bin_dir" elif [ "$(command -v wget)" ]; then - sh -c "$(wget -qO- https://git.io/chezmoi)" -- -b "$bin_dir" + sh -c "$(wget -qO- chezmoi.io/get)" -- -b "$bin_dir" else echo "To install chezmoi, you must have curl or wget installed." >&2 exit 1