1
0

dotfiles: improve forge selection

This commit is contained in:
2024-07-05 17:51:22 +03:00
parent 4112913166
commit 0ae83ee81b
2 changed files with 29 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/zsh
dotfiles-update() {
"${ZSHU[d_dotfiles]}/install.sh" "$@"
"${ZSHU[d_dotfiles]}/install.sh" "$@" || return $?
}
dotfiles-git() { (
@@ -49,7 +49,7 @@ z-zwc-flush() {
}
z-update() {
dotfiles-update
dotfiles-update || return $?
z-cache-flush
}