mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Quick fix for a small output error in the update script
This commit is contained in:
parent
3713af3244
commit
57402031c4
1 changed files with 1 additions and 1 deletions
2
update
2
update
|
@ -213,7 +213,7 @@ fi
|
|||
process_status="$(git pull origin master 2>&1)"
|
||||
if [[ $? = 0 ]]; then
|
||||
if ! grep -q "Already up-to-date" <<< "$process_status"; then
|
||||
printf '%s\n'"$cfg_green_bold SUCCESS! $c_reset"
|
||||
printf '%s\n' "$cfg_green_bold SUCCESS! $c_reset"
|
||||
else
|
||||
printf '%s\n' "$cfg_white_bold UP TO DATE $c_reset"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue