Skip to content

Commit a8d7187

Browse files
committed
Add return code
1 parent 10fcb50 commit a8d7187

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

manager/manager/manager.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -703,8 +703,11 @@ def find_docker_console():
703703
shell=True,
704704
executable="/bin/bash",
705705
)
706-
707-
compile_process.wait()
706+
#FIX: does not work. Always returns 0
707+
returncode = compile_process.wait()
708+
print(returncode)
709+
if returncode != 0:
710+
raise Exception("Failed to compile")
708711

709712
self.application_process = subprocess.Popen(
710713
[

0 commit comments

Comments
 (0)