1
0
forked from mir/linux-vm-tools

fix code style

This commit is contained in:
Luiz Paulo "Bills 2018-10-03 20:21:52 -03:00 committed by GitHub
parent 12fb39679f
commit a4e9315d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,13 +12,13 @@ if [ $(id -u) -ne 0 ]; then
fi fi
# Use Qi to check for exact package name # Use Qi to check for exact package name
if [ ! pacman -Qi xrdp > /dev/null ]; then if ! pacman -Qi xrdp > /dev/null ; then
echo 'xrdp not installed. Run makepkg.sh first to install xrdp.' >&2 echo 'xrdp not installed. Run makepkg.sh first to install xrdp.' >&2
exit 1 exit 1
fi fi
# Use Qs to allow xorgxrdp-devel-git # Use Qs to allow xorgxrdp-devel-git
if [ ! pacman -Qs xorgxrdp > /dev/null ]; then if ! pacman -Qs xorgxrdp > /dev/null ; then
echo 'xorgxrdp not installed. Run makepkg.sh first to install xorgxrdp.' >&2 echo 'xorgxrdp not installed. Run makepkg.sh first to install xorgxrdp.' >&2
exit 1 exit 1
fi fi