7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$(ls -A ${API_PROJECT_DIR})" ]; then
|
|
echo "No files found in project dir, maybe you forgot to mount it?" >&2
|
|
exit 1
|
|
fi
|