From c2bd01edf0cbd2e4fd89c3ac6421c5aba011007b Mon Sep 17 00:00:00 2001 From: Daniel Perez Date: Thu, 3 Nov 2016 18:41:32 +0900 Subject: [PATCH] Fix passing arguments to python CLI --- shims/python | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shims/python b/shims/python index e94396e..039305b 100755 --- a/shims/python +++ b/shims/python @@ -16,7 +16,7 @@ run_python() { local short_python_version="${splitted_version[0]}.${splitted_version[1]}" - exec $HOME/.asdf/bin/private/asdf-exec python bin/python${short_python_version} $@ + exec $HOME/.asdf/bin/private/asdf-exec python bin/python${short_python_version} "$@" } -run_python $@ +run_python "$@"