mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "VERCEL_ENV: ${VERCEL_ENV}"
|
|
|
|
if [[ "${VERCEL_ENV}" == "production" ]]; then
|
|
echo "✅ - Build can proceed"
|
|
exit 1
|
|
else
|
|
echo "🛑 - Build cancelled"
|
|
exit 0
|
|
fi
|