chore: Double quote array expansions to avoid re-splitting elements

This commit is contained in:
txtsd 2022-04-06 18:11:13 +05:30
parent beac3155df
commit e41a4208a0
No known key found for this signature in database
GPG Key ID: 000F85679D4B6B53

View File

@ -7,5 +7,5 @@ if [ "$1" == "update" ]; then
elif [ "$1" == "cron" ]; then
exec cron -f
else
exec $@
exec "$@"
fi