我正在尝试使用 IzPack 4.3.5 制作安装程序。不幸的是,安装程序抛出了这个消息:
这个目录不能写!请选择其他目录!
我正在尝试在“~/Library/Application Support/minecraft/bin”中安装一些东西。
这是我的 install.xml:
<info>
<appname>WorldEdit - Client User Interface installer</appname>
<appversion>1.0</appversion>
</info>
<guiprefs width="640" height="480" resizable="yes"/>
<locale>
<langpack iso3="eng"/>
</locale>
<resources>
<res id="InfoPanel.info" src="info.txt"/>
<res id="TargetPanel.dir" src="path.txt"/>
</resources>
<panels>
<panel classname="InfoPanel"/>
<panel classname="DefaultTargetPanel"/>
<panel classname="TargetPanel"/>
<panel classname="InstallPanel"/>
<panel classname="FinishPanel"/>
</panels>
<packs>
<pack name="WorldEdit - Client User Interface" required="yes">
<description>Minecraft 1.4.7 met Forge en WorldEdit - Client User Interface</description>
<file src="../Inhoud/minecraft.jar" targetdir="$INSTALL_PATH"/>
</pack>
</packs>
还有我的 path.txt:
${ENV[USER_HOME]}/Library/Application Support/minecraft/bin
提前致谢