From 102abf29073b77a040731eb48d2f445c12b19ff2 Mon Sep 17 00:00:00 2001 From: Daniel Perez Date: Mon, 25 Apr 2016 19:04:45 +0900 Subject: [PATCH] Fix script to run python. --- shims/python | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shims/python b/shims/python index fc26e6e..625dc5f 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/daniel/.asdf/bin/private/asdf-exec python bin/python${short_python_version} + exec /home/daniel/.asdf/bin/private/asdf-exec python bin/python${short_python_version} $@ } -run_python +run_python $@