mirror of https://gitee.com/answerdev/answer.git
6 lines
118 B
Bash
6 lines
118 B
Bash
|
#!/bin/bash
|
||
|
if [ ! -f "/data/config.yaml" ]; then
|
||
|
/usr/bin/answer init
|
||
|
fi
|
||
|
/usr/bin/answer run -c /data/config.yaml
|