mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
0022ae1b31
- [x] check redirect works at template root - [x] check redirect works within individual template page
24 lines
667 B
Bash
Executable File
24 lines
667 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "VERCEL_ENV: $VERCEL_ENV"
|
|
echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
|
|
|
|
|
|
if [ "$VERCEL_ENV" == "production" ] || [ "$VERCEL_GIT_COMMIT_REF" == "master" ] || [ "$VERCEL_GIT_COMMIT_REF" == "v0.1" ]; then
|
|
echo "✅ Production build - proceeding with build"
|
|
exit 1;
|
|
else
|
|
echo "Checking for changes in docs/"
|
|
echo "---"
|
|
git log -n 50 --pretty=format:"%s" -- . | grep -v '(#'
|
|
if [ $? -eq 0 ]; then
|
|
echo "---"
|
|
echo "✅ Changes detected in docs/ - proceeding with build"
|
|
exit 1
|
|
else
|
|
echo "---"
|
|
echo "🛑 No changes detected in docs/ - ignoring build"
|
|
exit 0
|
|
fi
|
|
fi
|