We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b929f3 commit 878822aCopy full SHA for 878822a
script/bootstrap
@@ -7,7 +7,9 @@ if ! chezmoi="$(command -v chezmoi)"; then
7
chezmoi="${bin_dir}/chezmoi"
8
echo "Installing chezmoi to '${chezmoi}'" >&2
9
if command -v curl >/dev/null; then
10
- chezmoi_install_script="$(curl -fsSL get.chezmoi.io)"
+ # 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)"
13
elif command -v wget >/dev/null; then
14
chezmoi_install_script="$(wget -qO- get.chezmoi.io)"
15
else
0 commit comments