dotfiles/zsh/funcs/updater

11 lines
169 B
Text

function update_me {
pushd ~
if [[ ! ( "$@" =~ -n ) ]]; then
topgrade
fi
pushd ~/.dotfiles/nix
./update.sh $@
popd
popd || return
}