We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5309afe commit 0a6a22dCopy full SHA for 0a6a22d
1 file changed
tools/build.py
@@ -807,7 +807,7 @@ def build_cefpython_module():
807
args = list()
808
args.append("\"{python}\"".format(python=sys.executable))
809
args.append(os.path.join(TOOLS_DIR, os.path.basename(__file__)))
810
- assert __file__ in sys.argv[0]
+ assert os.path.basename(__file__) in sys.argv[0]
811
args.extend(SYS_ARGV_ORIGINAL[1:])
812
command = " ".join(args)
813
print("[build.py] Running command: %s" % command)
0 commit comments