diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 20:08:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 20:08:43 -0300 |
commit | 2af113996f556d9606e0a031c287faac56121108 (patch) | |
tree | 1e105809642552c9b4f42d3f0b5be94d0c97d28c | |
parent | d74ed37d10eeddf454f5fdae0bfb3206ffcfd400 (diff) | |
download | metadot-2af113996f556d9606e0a031c287faac56121108.tar.gz metadot-2af113996f556d9606e0a031c287faac56121108.tar.bz2 |
Fixes parameter passing
-rwxr-xr-x | metadot | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -272,19 +272,19 @@ elif [ "$OPT" == "ls" ]; then metadot_ls elif [ "$OPT" == "ls-bundle" ]; then shift - metadot_ls_bundle $1 + metadot_ls_bundle $* elif [ "$OPT" == "version" ]; then ( cd $DOT && git log --show-signature -n 1 ) elif [ "$OPT" == "update" ]; then metadot_update elif [ "$OPT" == "backup" ]; then shift - metadot_backup $1 + metadot_backup $* elif [ "$OPT" == "clone" ]; then - metadot_clone $1 + metadot_clone $* elif [ "$OPT" == "create" ]; then shift - metadot_create $1 + metadot_create $* elif [ "$OPT" == "load" ] || [ "$OPT" == "deps" ]; then shift metadot_process_modules $* |