mirror of
https://github.com/mayswind/ezbookkeeping
synced 2026-04-21 21:47:54 +00:00
15 lines
246 B
Bash
Executable file
15 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e;
|
|
|
|
conf_path_param="";
|
|
|
|
if [ "${EBK_CONF_PATH}" != "" ]; then
|
|
conf_path_param="--conf-path=${EBK_CONF_PATH}";
|
|
fi
|
|
|
|
if [ $# -gt 0 ]; then
|
|
exec "$@"
|
|
else
|
|
exec /ezbookkeeping/ezbookkeeping server run ${conf_path_param};
|
|
fi
|