From 2af113996f556d9606e0a031c287faac56121108 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 16 Mar 2017 20:08:43 -0300 Subject: Fixes parameter passing --- metadot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/metadot b/metadot index 27efd66..79ca0bb 100755 --- a/metadot +++ b/metadot @@ -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 $* -- cgit v1.2.3