mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-14 10:53:43 +00:00
9 lines
117 B
Bash
9 lines
117 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ]; then
|
|
set -- node "$@"
|
|
fi
|
|
|
|
exec "$@"
|