Skip to content

Commit

Permalink
sanity check of recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
kiihne-noaa authored Nov 14, 2024
1 parent 0de08a8 commit 108a123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fre/pp/checkoutScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

#############################################
Expand Down

0 comments on commit 108a123

Please sign in to comment.