9 lines
122 B
Bash
9 lines
122 B
Bash
#!/bin/sh
|
|
|
|
## Do whatever you need with env vars here ...
|
|
|
|
chmod 0600 ${PROJECT_SSH_KEY}
|
|
|
|
# Hand off to the CMD
|
|
exec "$@"
|