mirror of
https://github.com/mayswind/ezbookkeeping
synced 2026-04-21 13:37:43 +00:00
6 lines
139 B
Bash
Executable file
6 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
CUR_DIR=$(dirname "$0");
|
|
|
|
if [ -x "${CUR_DIR}/custom-backend-pre-setup.sh" ]; then
|
|
"${CUR_DIR}"/custom-backend-pre-setup.sh
|
|
fi
|