Some past commits might have contained Cursor's IP or accidentally commited API keys. Before making the repository public, all the history has been squashed into a single commit with.
9 lines
112 B
Bash
9 lines
112 B
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
if [ $# -eq 0 ] || [ "${1#-}" != "$1" ]; then
|
|
set -- supervisord "$@"
|
|
fi
|
|
|
|
exec "$@"
|