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")