diff options
-rw-r--r-- | bashrc/main.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc/main.sh b/bashrc/main.sh index badbc78..27c5414 100644 --- a/bashrc/main.sh +++ b/bashrc/main.sh @@ -49,12 +49,12 @@ _self_update() { if [[ -n "$_local_commits" ]]; then echo -e "\033[31m*\033[0m You have some local commits. I will now try to use the new origin/master" - echo " and apply the extra commits afterwards." + echo " and apply the extra commits afterwards." fi if [[ -n "$_local_changes" ]]; then echo -e "\033[31m*\033[0m You have some uncommited local changes." - echo " I will try to preserve it using the git stash." + echo " I will try to preserve it using the git stash." git stash >/dev/null || return fi |