mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
10 lines
172 B
Bash
Executable File
10 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
set -o pipefail
|
|
|
|
if [[ "$1" == touch* ]]; then
|
|
echo "entrypoint script started with arguments $*"
|
|
touch "$(echo $@ | awk '{print $2}')"
|
|
else
|
|
exec "$@"
|
|
fi
|