minor fixes

This commit is contained in:
Carlos Galindo 2019-10-07 12:11:13 +02:00
parent a86ffc08f9
commit bfdadaea4b
Signed by: kauron
GPG Key ID: 83E68706DEE119A3
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
name = backbit
root = "-o root -g root"
root = -o root -g root
all:
echo "Program is compiled, run 'make install'"

View File

@ -1,9 +1,9 @@
#!/bin/bash
if [ -z $1 -o ! -d $1 ]
confDir=/etc/backbit
if [ ! -z $1 -a -d $1 ]
then
confDir=/etc/backbit
else
confDir=$1
fi