chore(dd-ctl): Fixed message when missing .conf
parent
bcaa8e843a
commit
3673268f48
2
dd-ctl
2
dd-ctl
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ ! -d "custom" ]; then echo "You need to copy custom.sample to custom folder and adapt it to your needs." && exit 1; fi
|
if [ ! -d "custom" ]; then echo "You need to copy custom.sample to custom folder and adapt it to your needs." && exit 1; fi
|
||||||
if [ ! -f "digitaldemocratic.conf" ]; then echo "You need to copy digitaldemocratic.conf.sample to .sample to custom folder and adapt" && exit 1; fi
|
if [ ! -f "digitaldemocratic.conf" ]; then echo "You need to copy digitaldemocratic.conf.sample to digitaldemocratic.conf and adapt" && exit 1; fi
|
||||||
|
|
||||||
OPERATION="$1"
|
OPERATION="$1"
|
||||||
if [ -z "$OPERATION" ]; then
|
if [ -z "$OPERATION" ]; then
|
||||||
|
|
Loading…
Reference in New Issue