mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 03:38:43 +00:00
10 lines
100 B
Bash
Executable File
10 lines
100 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [[ -f $1/.static ]]; then
|
|
echo ".static"
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|