From ecfc973c2f60906372024fe3e6a83c5ea8cfb95c Mon Sep 17 00:00:00 2001 From: Tyler Akins Date: Tue, 20 Dec 2016 07:27:06 -0600 Subject: [PATCH] Fixing --source to parse the right argument This is addressing #12 --- mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mo b/mo index 467cbb7..dcd009d 100755 --- a/mo +++ b/mo @@ -75,7 +75,7 @@ mo() ( ;; --source=*) - f2source="${1#--source=}" + f2source="${arg#--source=}" if [[ -f "$f2source" ]]; then # shellcheck disable=SC1090