Skip to content

Commit 878822a

Browse files
committed
Workaround
1 parent 6b929f3 commit 878822a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/bootstrap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ if ! chezmoi="$(command -v chezmoi)"; then
77
chezmoi="${bin_dir}/chezmoi"
88
echo "Installing chezmoi to '${chezmoi}'" >&2
99
if command -v curl >/dev/null; then
10-
chezmoi_install_script="$(curl -fsSL get.chezmoi.io)"
10+
# chezmoi_install_script="$(curl -fsSL get.chezmoi.io)"
11+
# Workaround until get.chezmoi.io is updated to use the script from https://github.com/twpayne/chezmoi/issues/4303
12+
chezmoi_install_script="$(curl -fsSL https://raw.githubusercontent.com/twpayne/chezmoi/4406bd873ca0c04f0e8a7e306dd52a71d9ae2f19/assets/scripts/install.sh)"
1113
elif command -v wget >/dev/null; then
1214
chezmoi_install_script="$(wget -qO- get.chezmoi.io)"
1315
else

0 commit comments

Comments
 (0)