source:
docker/context/entrypoint.sh@
968:1128dfecb282
Last change on this file since 968:1128dfecb282 was 916:4f738ffc3596, checked in by , 6 years ago | |
---|---|
|
|
File size: 209 bytes |
Line | |
---|---|
1 | #!/bin/bash |
2 | |
3 | scriptdir=$(cd $(dirname $0) && pwd) |
4 | |
5 | if test "$1" = "initialize"; then |
6 | "${scriptdir}/setup.sh" |
7 | elif test "$1" = "build"; then |
8 | shift |
9 | "${scriptdir}/build.sh" "$@" |
10 | else |
11 | exec "$@" |
12 | fi |
Note:
See TracBrowser
for help on using the repository browser.