From 7988598fa859260d730b5573d8583ea00d86bbe1 Mon Sep 17 00:00:00 2001
From: "flyingscorpio@arch-desktop" <tfranken@protonmail.com>
Date: Mon, 26 Oct 2020 16:40:45 +0100
Subject: [PATCH] Go back to home after hello and bye

---
 dotfiles/shell/aliases | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dotfiles/shell/aliases b/dotfiles/shell/aliases
index 73e395d..59bc715 100644
--- a/dotfiles/shell/aliases
+++ b/dotfiles/shell/aliases
@@ -65,6 +65,7 @@ hello() {
     cd ~/Keepass && git pull
     echo "Pulling from TSSR"
     cd ~/Lessons/TSSR && git pull
+    cd || exit 1
 }
 
 bye() {
@@ -74,4 +75,5 @@ bye() {
     cd ~/Keepass && git push
     echo "Pushing to TSSR"
     cd ~/Lessons/TSSR && git push
+    cd || exit 1
 }