From e6336777496c3ea31e9926c5d5fca61d09f2ead4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 19 Mar 2023 09:51:36 +0530 Subject: [PATCH] Run make debug before building static binaries Ensures all deps are built in case make clean was run. --- publish.py | 1 + 1 file changed, 1 insertion(+) diff --git a/publish.py b/publish.py index a17813089..e1d22564a 100755 --- a/publish.py +++ b/publish.py @@ -86,6 +86,7 @@ def run_build(args: Any) -> None: call(prefix + 'shutdown', echo=True) 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('make debug') call('./setup.py build-static-binaries')