From 3cd3f2815156a738ad5c6224b0f7324f909390ee Mon Sep 17 00:00:00 2001
From: dam1n19 <dam1n19@soton.ac.uk>
Date: Wed, 5 Jul 2023 09:49:23 +0100
Subject: [PATCH] Added checkout debug statement

---
 bin/subrepo_checkout.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/subrepo_checkout.py b/bin/subrepo_checkout.py
index 2d5afad..a689d9b 100755
--- a/bin/subrepo_checkout.py
+++ b/bin/subrepo_checkout.py
@@ -30,6 +30,7 @@ def read_branchfile(branchfile):
     return sub_repos
     
 def repo_checkout(directory, branch):
+    print(f"Checking out {directory} to branch {branch}")
     os.system(f"cd {directory}; git checkout {branch}")
     
 if __name__ == "__main__":
-- 
GitLab