From 4443c3152c596bdf06a500e81d31b94edf314016 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Mon, 19 Feb 2024 09:17:20 -0500 Subject: [PATCH] fix: include code.json in distribution zipfile (#27) * code.json needs to be in the zipfile for flopy's get-modflow --subset * previously included by default, now need make-code-json --zip arg --- scripts/build_programs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build_programs.py b/scripts/build_programs.py index 7109062..276231a 100755 --- a/scripts/build_programs.py +++ b/scripts/build_programs.py @@ -115,6 +115,8 @@ def run_cmd(args) -> bool: "-ad", str(path), "--verbose", + "--zip", + str(zip_path) ] ), "could not make code.json" assert zip_path.is_file(), "could not build distribution zipfile"