File size: 276 Bytes
e3278e4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
echo $(pwd)
# Run the Python migration script
python3 litellm/proxy/prisma_migration.py
# Check if the Python script executed successfully
if [ $? -eq 0 ]; then
echo "Migration script ran successfully!"
else
echo "Migration script failed!"
exit 1
fi
|