From 3fcd0dda67fd241e69cee5355eac59f79a9a406c Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Fri, 27 Jun 2025 13:50:37 -0700 Subject: [PATCH] Add version info to package installer (#249) Fixes https://github.com/apple/container/issues/203 Signed-off-by: Kathryn Baldauf --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c34170de..13760188 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,7 @@ installer-pkg: $(STAGING_DIR) @codesign $(CODESIGN_OPTS) --prefix=com.apple.container. --entitlements=signing/container-network-vmnet.entitlements $(join $(STAGING_DIR), libexec/container/plugins/container-network-vmnet/bin/container-network-vmnet) @echo Creating application installer - @pkgbuild --root $(STAGING_DIR) --identifier com.apple.container-installer --install-location /usr/local $(PKG_PATH) + @pkgbuild --root $(STAGING_DIR) --identifier com.apple.container-installer --install-location /usr/local --version ${RELEASE_VERSION} $(PKG_PATH) @rm -rf $(STAGING_DIR) .PHONY: dsym