From 2f6ee5d29e2a8a9e2cc9be23b0a62b1832efea1a Mon Sep 17 00:00:00 2001 From: alexjacks92 Date: Thu, 23 Jan 2014 12:43:46 -0500 Subject: [PATCH] Changing pull back to main repos instead of mine. --- test/script/srcupdater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/script/srcupdater.py b/test/script/srcupdater.py index 1a19ea9568..c444be2346 100755 --- a/test/script/srcupdater.py +++ b/test/script/srcupdater.py @@ -81,7 +81,7 @@ def gitPull(TskOrAutopsy, branch): print("Checking out " + branch) call = ["git", "checkout", branch] subprocess.call(call, stdout=sys.stdout, cwd=ccwd) - toPull = "https://www.github.com/alexjacks92/" + TskOrAutopsy + toPull = "https://www.github.com/sleuthkit/" + TskOrAutopsy call = ["git", "pull", toPull, branch] if TskOrAutopsy == "sleuthkit": ccwd = os.path.join("..", "..", "..", "sleuthkit")