mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 15:16:42 +00:00
15 lines
228 B
Bash
15 lines
228 B
Bash
#!/bin/bash
|
|
|
|
echo "VERCEL_ENV: $VERCEL_ENV"
|
|
|
|
if [[ "$VERCEL_ENV" == "production" ]] ; then
|
|
# Proceed with the build
|
|
echo "✅ - Build can proceed"
|
|
exit 1;
|
|
|
|
else
|
|
# Don't build
|
|
echo "🛑 - Build cancelled"
|
|
exit 0;
|
|
fi
|