diff options
author | Alexey Neyman <stilor@att.net> | 2020-02-03 16:11:33 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-02-03 16:12:38 -0800 |
commit | b7a87769b934c7dec0f22f8743c3ed397a3a6d51 (patch) | |
tree | e158774538f3e029f6660ca3096b10bf3193e35a /testing | |
parent | c317f57b405779588064f6a4ff292df0c5021f83 (diff) | |
download | crosstool-ng-b7a87769b934c7dec0f22f8743c3ed397a3a6d51.tar.gz crosstool-ng-b7a87769b934c7dec0f22f8743c3ed397a3a6d51.tar.bz2 crosstool-ng-b7a87769b934c7dec0f22f8743c3ed397a3a6d51.zip |
Ignore trailing / in container name
... so that it is possible to use tab completion when selecting
the container to use.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/docker/dmgr.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/docker/dmgr.sh b/testing/docker/dmgr.sh index 825362a9..e6a93e70 100755 --- a/testing/docker/dmgr.sh +++ b/testing/docker/dmgr.sh @@ -170,7 +170,7 @@ fi case "${action}" in build|install|sample|enter|root|clean|distclean) for c in ${selected_containers}; do - eval "action_${action} ${c} \"$@\"" + eval "action_${action} ${c%/} \"$@\"" done ;; "") |