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