2
0
Эх сурвалжийг харах

Avoid confusing traceback on attempting build without platform option

A traceback is printed on invoking scons without the compulsory
platform option. This is confusing, since the problem is not in
the code. Fix is to explicitly exit from the build right after
printing the error message, so the missing env variable cannot
cause the traceback later.

Fixes #17414
Viktor Ferenczi 7 жил өмнө
parent
commit
f0b4921695
1 өөрчлөгдсөн 1 нэмэгдсэн , 0 устгасан
  1. 1 0
      SConstruct

+ 1 - 0
SConstruct

@@ -491,6 +491,7 @@ else:
     for x in platform_list:
         print("\t" + x)
     print("\nPlease run scons again with argument: platform=<string>")
+    sys.exit(255)
 
 
 screen = sys.stdout