diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-01-09 17:45:03 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-01-09 17:45:03 +0100 |
commit | 6c88c5c0958afe950277b4832a22365d6099e0ef (patch) | |
tree | 7f571d600d95f50d692a95ccf5161b07354e6599 | |
parent | 1b18a81a4a9b2ebe3a2b8e10571dee71da9b64bf (diff) | |
download | bin-6c88c5c0958afe950277b4832a22365d6099e0ef.tar.gz bin-6c88c5c0958afe950277b4832a22365d6099e0ef.tar.xz |
ch: Fix argument order in shell-bind
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | ch | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ case $command in done ;; shell) chshell "$@";; - shell-bind) chshell --bind-ro="$PWD:/pwd" "$@";; + shell-bind) chshell "$@" --bind-ro="$PWD:/pwd";; rshell) chrshell "$@";; install) chinstall "$@";; list) |