dotfiles/zsh/funcs/updater
Anthony Cicchetti 7d39c221e6 pushd_silent
2024-08-12 10:35:07 -04:00

9 lines
147 B
Text

function update_me {
setopt local_options pushd_silent
pushd ~
pushd ~/.dotfiles/nix
./update.sh $@
popd
popd || return
}