...
This commit is contained in:
parent
60d4ed3a1c
commit
297ac9c3fe
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -1068,7 +1068,7 @@ def update_go_generated_files(args: Options, kitty_exe: str) -> None:
|
|||
env['ASAN_OPTIONS'] = 'detect_leaks=0'
|
||||
cp = subprocess.run([kitty_exe, '+launch', os.path.join(src_base, 'gen/go_code.py')], stdout=subprocess.PIPE, env=env)
|
||||
if cp.returncode != 0:
|
||||
raise SystemExit(cp.returncode)
|
||||
raise SystemExit(f'Generating go code failed with exit code: {cp.returncode}')
|
||||
|
||||
|
||||
def parse_go_version(x: str) -> Tuple[int, int, int]:
|
||||
|
|
|
|||
Loading…
Reference in a new issue