Files
2025-09-20 01:10:56 +02:00

9 lines
150 B
Bash

#!/bin/sh
set -e
if [ -f "/app/entry.sh" ]; then
echo "Fixing line endings for /app/entry.sh..."
sed -i 's/\r$//' /app/entry.sh
fi
exec "$@"