8 lines
126 B
Bash
8 lines
126 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$CONFIG_PATH" ]; then
|
||
|
echo "Config path is required!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
/app/dione -config "$CONFIG_PATH"
|