réplica de
https://github.com/dokku/buildpack-nginx.git
synced 2025-07-15 17:50:52 +00:00
10 líneas
100 B
Bash
Archivo Ejecutable
10 líneas
100 B
Bash
Archivo Ejecutable
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [[ -f $1/.static ]]; then
|
|
echo ".static"
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|