Files
slot/.devcontainer/ui/docker-entrypoint.sh

9 lines
171 B
Bash
Raw Permalink Normal View History

2025-06-08 10:12:34 +02:00
#!/bin/sh
set -e
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then
set -- /usr/local/bin/bun "$@"
fi
exec "$@"