7 lines
139 B
Bash
Executable File
7 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
|