Compare commits

...

2 commits

Author SHA1 Message Date
Lockszmith (@wolfpack)
9a6dab3467 Repair cargo-binstall based externals 2025-04-15 16:13:46 -04:00
Lockszmith (@wolfpack)
4bbf7c9d6b Fix initialization and improve it's resiliancy 2025-04-15 16:13:14 -04:00
3 changed files with 9 additions and 4 deletions

View file

@ -49,5 +49,10 @@ if ! [ -d ~/.cache/chezmoi/init_backup ]; then
safe_backup ~/.zshrc ~/.zsh_history ~/.zprofile ~/.bashrc ~/.bash_history ~/.profile
fi
# Brute force remove chezmoistate lock and restart init --apply
exec sh -c 'rm ~/.config/chezmoi/chezmoistate.boltdb && CZ_EXTR=1 chezmoi init --apply'
# Brute force remove chezmoistate lock and initialize chezmoi
# apply with CZ_EXTR=1 will run twice as some logic in chemzoiexternal
# requires tools that are downloaded with chezmoiexternal
exec sh -c 'rm ~/.config/chezmoi/chezmoistate.boltdb \
&& chezmoi init && chezmoi apply \
&& printf "apply with externals #1/2...\n" && CZ_EXTR=1 chezmoi apply \
&& printf "apply with externals #2/2...\n" && CZ_EXTR=1 chezmoi apply'

View file

@ -112,7 +112,7 @@
"refreshPeriod" $defaultRefresh
) -}}{{- end -}}{{- end -}}{{- end -}}
{{- if lookPath "jq" -}}
{{- if and (lookPath "jq") (lookPath "cargo-binstall") -}}
{{- $path_prefix = or (get (dict "linux" "./") .chezmoi.os) "" -}}
{{- with $app_name := "eza" -}}
{{- with $bin_url := (output "sh" "-c" (

View file

@ -1,3 +1,3 @@
#! /usr/bin/env bash
printf '_home init\s'
printf '_src.posix init\n'