chroot-style/ethereal.sh: fix some stuff

This commit is contained in:
maxice8 2019-04-05 13:49:41 -03:00
parent 21eb5fb9a7
commit a6830e966e
No known key found for this signature in database
GPG key ID: 543B9D4F4299F06B

View file

@ -44,7 +44,7 @@ fi
msg_red() {
# error messages in bold/red
[ -n "$NOCOLORS" ] || printf >&2 "\033[1m\033[31m"
printf "=> ERROR: %s\\n" "$@"
printf "=> ERROR: %s\\n" "$@" >&2
[ -n "$NOCOLORS" ] || printf >&2 "\033[m"
}
@ -63,7 +63,7 @@ fake_mount() {
[ -f "$2" -o -L "$2" ] && rm -f "$2"
ln -s "$1" "$2"
echo "linked $1 -> $2"
echo "linked $2 -> $1"
}
if [ "${XBPS_ALLOW_CHROOT_BREAKOUT}" != "yes" ]; then