1 file + 1 − 1 Inline Compare changes Side-by-side Inline Show whitespace changes Files 1 bin/subrepo_checkout.py +1 −1 Original line number Diff line number Diff line Loading @@ -41,7 +41,7 @@ def find_branchfile(directory, branchfile): def repo_checkout(directory, branch, branchfile): print(f"Checking out {directory} to branch {branch}") os.system(f"cd {directory}; git checkout --recurse-submodules {branch}") os.system(f"cd {directory}; git checkout --recurse-submodules {branch}; git pull") find_branchfile(directory, branchfile) if __name__ == "__main__": Loading
bin/subrepo_checkout.py +1 −1 Original line number Diff line number Diff line Loading @@ -41,7 +41,7 @@ def find_branchfile(directory, branchfile): def repo_checkout(directory, branch, branchfile): print(f"Checking out {directory} to branch {branch}") os.system(f"cd {directory}; git checkout --recurse-submodules {branch}") os.system(f"cd {directory}; git checkout --recurse-submodules {branch}; git pull") find_branchfile(directory, branchfile) if __name__ == "__main__": Loading