we generate more than just rc commands

This commit is contained in:
Kovid Goyal 2022-08-26 10:53:31 +05:30
parent 841b368021
commit 5412a0126c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ def update_go_generated_files(args: Options, kitty_exe: str) -> None:
# update all the various auto-generated go files, if needed
if args.verbose:
print('Updating Go generated files...')
cp = subprocess.run([kitty_exe, '+launch', os.path.join(base, 'gen-rc-go.py')], stdout=subprocess.PIPE)
cp = subprocess.run([kitty_exe, '+launch', os.path.join(base, 'gen-go-code.py')], stdout=subprocess.PIPE)
if cp.returncode != 0:
raise SystemExit(cp.returncode)