proton-python-client/docker_entry.sh
Alexandru Cheltuitor c175e88b54 Feature/gitlab ci
2020-11-05 12:03:41 +00:00

9 lines
127 B
Bash
Executable file

#!/bin/bash
if [ -f .env ]; then
echo 'find local .env ~ load new env';
export $(cat .env | xargs);
env;
fi
exec "$@";