Compare commits

...

2 Commits
0.7.1 ... 0.7.2

Author SHA1 Message Date
udeved
8fe1e82226 util-msg: fix msg_row 2018-02-15 22:43:25 +01:00
udeved
aa8725518b commitpkg: fix it 2018-02-15 22:39:28 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ release_pkg(){
action='add'
[[ ! -d repos ]] && mkdir repos
cd repos
[[ -d $dest ]] && git rm -r $dest
[[ -d repos/$dest ]] && git rm -r repos/$dest
cd ..
cp -r trunk repos/$dest
fi

View File

@@ -91,14 +91,14 @@ msg_row_notify(){
printf "${GREEN} ${mesg}${ALL_OFF}\n" "$@" >&2
}
msg_row_downgrade(){
msg_row(){
local mesg=$1; shift
printf "${YELLOW} ${mesg}${ALL_OFF}\n" "$@" >&2
printf "${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2
}
msg_row_upgrade(){
local mesg=$1; shift
printf "${RED}${BOLD} ${mesg} ${ALL_OFF}\n" "$@" >&2
printf "${RED}${RED} ${mesg} ${ALL_OFF}\n" "$@" >&2
}
import(){