From 89ac6016f7f1318f480d3cb3027e4df1d8dd7efa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Mon, 26 Mar 2018 17:03:35 +0200
Subject: [PATCH] Fixed envsetup restart (refs #24994).

---
 tester.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tester.py b/tester.py
index d8d3c6b1..933a8b6a 100755
--- a/tester.py
+++ b/tester.py
@@ -126,7 +126,7 @@ class Tester():
             subprocess.call(['python3', 'update_envsetup.py'])
             if mtime != os.path.getmtime(tester_path):
                 log('The script has changed, restarting it...')
-                os.execl('/bin/python3', 'python3', tester_path, '-n', *args)
+                os.execl('/usr/bin/python3', 'python3', tester_path, '-n', *args)
                 sys.exit(1)  # not reachable
         # Load conf
         conf = utils.load_conf()
-- 
GitLab