我们已经为我们的 Java 应用程序创建了 .pkg 安装程序,每次运行最新的 .pkg 安装程序时,它都会删除该应用程序的先前开发版本。我注意到这个最新的安装程序在删除其中一个旧的开发版本时会打印“删除旧文件...”。对于经常希望保留多个开发版本进行比较的测试人员来说,这非常烦人。
有没有办法强制安装程序不删除旧文件?
为了创建我的最终安装程序,我首先创建了几个子 .pkg,并调用 pkgbuild:
pkgbuild --root "./Temp" --identifier "com.agentsheets.agentsheets" --install-location "/Applications" --sign "Developer ID Installer: AgentSheets, Inc." "./build_dir/temp.pkg"
pkgbuild --root "$APP_FOLDER/AgentSheets.app" --identifier "com.agentsheets.agentsheets.app" --install-location "/Applications/$APP_FOLDER_NAME/AgentSheets.app" --sign "Developer ID Installer: AgentSheets, Inc." "./build_dir/asj_app.pkg"
pkgbuild --root "./AgentSheetsCameraHelper.app" --identifier "com.agentsheets.agentsheets.camera" --install-location "/Applications/$APP_FOLDER_NAME/Resources/AgentSheetsCameraHelper.app" --sign "Developer ID Installer: AgentSheets, Inc." "./build_dir/camera.pkg"
然后我使用 productbuild 创建最终的 .pkg:
productbuild --package-path "./build_dir" --distribution "./Distribution.xml" --resources "./Resources" --sign "Developer ID Installer: AgentSheets, Inc." "$FINAL_PKG"
这是我的distribution.xml:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>AgentSheets</title>
<background file="background.png" scaling="toFit"/>
<options customize="never" require-scripts="false"/>
<pkg-ref id="com.agentsheets.agentsheets"/>
<pkg-ref id="com.agentsheets.agentsheets.app"/>
<pkg-ref id="com.agentsheets.agentsheets.camera"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
<line choice="com.agentsheets.agentsheets"/>
<line choice="com.agentsheets.agentsheets.app"/>
<line choice="com.agentsheets.agentsheets.camera"/>
</line>
</choices-outline>
<choice id="default"/>
<choice id="com.agentsheets.agentsheets" visible="false">
<pkg-ref id="com.agentsheets.agentsheets"/>
</choice>
<pkg-ref id="com.agentsheets.agentsheets" version="0" onConclusion="none">temp.pkg</pkg-ref>
<choice id="com.agentsheets.agentsheets.app" visible="false">
<pkg-ref id="com.agentsheets.agentsheets.app"/>
</choice>
<pkg-ref id="com.agentsheets.agentsheets.app" version="0" onConclusion="none">asj_app.pkg</pkg-ref>
<choice id="com.agentsheets.agentsheets.camera" visible="false">
<pkg-ref id="com.agentsheets.agentsheets.camera"/>
</choice>
<pkg-ref id="com.agentsheets.agentsheets.camera" version="0" onConclusion="none">camera.pkg</pkg-ref>
</installer-gui-script>