pyro2927/SouthwestCheckin

View on GitHub
entrypoint.sh

Summary

Maintainability
Test Coverage
#!/bin/sh
set -e

if [ "$1" != "/bin/sh" ]; then
  python -u ./checkin.py "$@"
else
  exec "$@"
fi