Add cd back after git pull
This commit is contained in:
parent
e7e1c8af01
commit
7c927e997e
1 changed files with 4 additions and 1 deletions
|
@ -13,6 +13,8 @@ export GREEN
|
|||
export ORANGE
|
||||
export NC
|
||||
|
||||
base_dir="$PWD"
|
||||
|
||||
|
||||
# Define OS {{{
|
||||
|
||||
|
@ -36,7 +38,7 @@ case ${os_release,,} in
|
|||
echo "You are using Manjaro"
|
||||
;;
|
||||
* )
|
||||
echo "${ORANGE}Didn't understand OS argument${NC}"
|
||||
echo "${ORANGE}Unable to determine OS${NC}"
|
||||
echo "Which OS are you using?"
|
||||
select OS in 'Debian / Ubuntu' 'Arch / Manjaro'; do
|
||||
case $OS in
|
||||
|
@ -115,6 +117,7 @@ git config --global alias.br "branch"
|
|||
if [ -e ~/.bash-git-prompt ]; then
|
||||
echo "Found existing bash-git-prompt, updating..."
|
||||
cd ~/.bash-git-prompt && git pull
|
||||
cd "$base_dir" || exit 1
|
||||
else
|
||||
echo "Cloning bash-git-prompt..."
|
||||
git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt --depth=1
|
||||
|
|
Loading…
Add table
Reference in a new issue