From 874bee96550d556baf875479c4ad9e5357620317 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 29 Oct 2012 17:06:58 -0400 Subject: [PATCH] Fix auto-restart functionality with new paths. (imported from commit cbaf31a194c92a3683249f38f2949259d05d0921) --- bots/zephyr_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/zephyr_mirror.py b/bots/zephyr_mirror.py index 8519741..0ad4b62 100755 --- a/bots/zephyr_mirror.py +++ b/bots/zephyr_mirror.py @@ -174,7 +174,7 @@ def maybe_restart_mirroring_script(): os.kill(child_pid, signal.SIGKILL) while True: try: - os.execvp(root_path + "/zephyr_mirror.py", sys.argv) + os.execvp(root_path + "/user_root/zephyr_mirror.py", sys.argv) except: print "Error restarting, trying again." traceback.print_exc()