mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 07:27:33 +08:00
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
CUR_DIR=$(dirname "$0");
|
|
|
|
if [ -x "${CUR_DIR}/custom-frontend-pre-setup.sh" ]; then
|
|
"${CUR_DIR}"/custom-frontend-pre-setup.sh
|
|
fi
|