mirror of
https://github.com/ProtonMail/proton-python-client.git
synced 2026-01-11 19:56:26 +00:00
9 lines
127 B
Bash
Executable file
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 "$@";
|