From 61da6612acb822a87fca157fe39757460213473f Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Fri, 31 Jul 2015 10:12:43 -0400 Subject: [PATCH] arv-copy git check doesn't catch system exceptions. No issue #. --- sdk/python/arvados/commands/arv_copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/arvados/commands/arv_copy.py b/sdk/python/arvados/commands/arv_copy.py index 09cd9d42e3..b68b5dccf5 100755 --- a/sdk/python/arvados/commands/arv_copy.py +++ b/sdk/python/arvados/commands/arv_copy.py @@ -192,7 +192,7 @@ def api_for_instance(instance_name): def check_git_availability(): try: arvados.util.run_command(['git', '--help']) - except: + except Exception: abort('git command is not available. Please ensure git is installed.') # copy_pipeline_instance(pi_uuid, src, dst, args) -- 2.39.5