Spaces:
Runtime error
Runtime error
File size: 357 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
set -x
set -eo pipefail
# The 'start-singleuser.sh' script is invoked by JupyterHub installations.
# Execute the 'run' script instead so everything goes through common
# entrypoint. That it is being run under JupyterHub will be determined
# later from environment variables set by JupyterHub.
exec /opt/app-root/builder/run "$@"
|