fix: cd to home before exec zsh on update

This commit is contained in:
2026-08-01 16:48:44 -04:00
parent 76aadda1fd
commit 20d8e27f32
+1 -1
View File
@@ -32,7 +32,7 @@ dotstate_update() {
info "Repository out of date. Pulling updates..."
git fetch origin && git reset --hard origin/master && git clean -fd &>/dev/null
cd "$orig_dir"
cd ~
dotstate activate
exec zsh
}