summaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc/main.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc/main.sh b/bashrc/main.sh
index 4a6d48a..51318cf 100644
--- a/bashrc/main.sh
+++ b/bashrc/main.sh
@@ -12,8 +12,8 @@ declare -r _BASHRC_DIR="${_DOTFILES_DIR}/bashrc"
# self update magic
_self_update() {
pushd ${_DOTFILES_DIR} &>/dev/null
-
- git fetch orgin 2>/dev/null
+
+ git fetch origin 2>/dev/null
if [[ -n "$(git whatchanged HEAD..origin/master)" ]]; then
echo -ne "\033[31m*\033[0m dotfile updates found, merge now? (Y/n) "
read _merge;