Run make debug before building static binaries

Ensures all deps are built in case make clean was run.
This commit is contained in:
Kovid Goyal 2023-03-19 09:51:36 +05:30
parent 073b47a236
commit e633677749
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -86,6 +86,7 @@ def run_build(args: Any) -> None:
call(prefix + 'shutdown', echo=True) call(prefix + 'shutdown', echo=True)
run_with_retry(f'python ../bypy macos program --sign-installers --notarize --non-interactive --extra-program-data "{vcs_rev}"') run_with_retry(f'python ../bypy macos program --sign-installers --notarize --non-interactive --extra-program-data "{vcs_rev}"')
call('python ../bypy macos shutdown', echo=True) call('python ../bypy macos shutdown', echo=True)
call('make debug')
call('./setup.py build-static-binaries') call('./setup.py build-static-binaries')