diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-27 23:06:21 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-29 12:06:54 -0700 |
commit | 270eb003dc5326d7da0e48aded355467f08f176c (patch) | |
tree | afcc36cf598f42bec8b63ac31cf413a381b8f448 /testing | |
parent | f6d8c2ffbd15197baeeabbb5dae836c6df0d234f (diff) | |
download | crosstool-ng-270eb003dc5326d7da0e48aded355467f08f176c.tar.gz crosstool-ng-270eb003dc5326d7da0e48aded355467f08f176c.tar.bz2 crosstool-ng-270eb003dc5326d7da0e48aded355467f08f176c.zip |
Update help
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/docker/dmgr.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/docker/dmgr.sh b/testing/docker/dmgr.sh index 74539b42..1f2b1203 100755 --- a/testing/docker/dmgr.sh +++ b/testing/docker/dmgr.sh @@ -24,6 +24,9 @@ ${1:+ERROR :: $1 Action is one of: build Build or rebuild the specified containers. + test Run tests (build-all). + enter Spawn a shell in the specified container. + clean Clean up in the specified container. If containers are not specified, the action is applied to all available containers. EOF @@ -97,7 +100,7 @@ selected_containers="${*:-${all_containers}}" case "${action}" in build|test|enter|clean) for c in ${selected_containers}; do - eval "action_${action} $c" + eval "action_${action} ${c}" done ;; "") |