10 lines
272 B
Bash
10 lines
272 B
Bash
#!/bin/sh
|
|
# Fix permissions on the cdragon cache directory if it exists
|
|
if [ -d "/cdragon" ]; then
|
|
# Ensure the node user owns the cdragon directory
|
|
chown -R node:node /cdragon 2>/dev/null || true
|
|
fi
|
|
|
|
# Execute the main command as the node user
|
|
exec su-exec node "$@"
|