From 108a12340deb66da1370d0ad6d971d5eda754f69 Mon Sep 17 00:00:00 2001 From: kiihne-noaa Date: Thu, 14 Nov 2024 14:41:56 -0500 Subject: [PATCH] sanity check of recursive --- fre/pp/checkoutScript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fre/pp/checkoutScript.py b/fre/pp/checkoutScript.py index 6632ed6a..8d5ad7dd 100644 --- a/fre/pp/checkoutScript.py +++ b/fre/pp/checkoutScript.py @@ -69,7 +69,7 @@ def _checkoutTemplate(experiment, platform, target, branch=None): print('directory exists, and its branch matches default tag') else: #scenario 1 - clone_output = subprocess.run(['git', 'clone', '-b',f'{default_tag}', '--recursive', 'https://github.com/NOAA-GFDL/fre-workflows.git', f'{name}'], capture_output=True, text=True) + clone_output = subprocess.run(['git', 'clone', '--recursive', '-b',f'{default_tag}', 'https://github.com/NOAA-GFDL/fre-workflows.git', f'{name}'], capture_output=True, text=True) print('output of fre pp checkouts git clone command is as follows:',clone_output) #############################################