如何为 Mac 操作系统的 packagemaker 编写预安装脚本
您好,我正在使用 Mac OS 的 package-maker 来创建 Mac OS 的安装程序包。我创建了一个简单的安装程序包,它运行良好。但我想在 /Applications 目录下创建一个新文件夹,在该文件夹下安装 myApplication.app 文件。因此,我需要创建一个预安装脚本,该脚本将在安装我的应用程序之前创建文件夹。然后将应用程序安装在该目录中。但我不知道如何编写预安装脚本来在 /Applications 目录下创建文件夹。 请帮我。
我需要您的帮助来创建预安装脚本以在 /Applications 目录下创建一个文件夹
谢谢 苏尼尔·库马尔·萨胡
Hi I am using package-maker of Mac OS to create installer package for Mac OS. I gave created a simple installer package it worked fine. But I want to create a new folder under /Applications directory under which myApplication.app file will be installed. So I need to create a pre-install script which will create folder before my application is installed. then install the application in that directory. But I do not know how to write pre-install script to create a folder under /Applications directory.
please help me.
I need all of your help to create pre-install script to create a folder under /Applications directory
Thanks
Sunil Kumar Sahoo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建目录,您可以使用以下预检或预安装脚本:
将其放入文件(名为
preflight
或preinstall
)中,然后通过在终端中键入使其可执行:chmod a+x 预检
(或预安装
)。To create a directory, you could have the following preflight or preinstall script:
Put that into a file (named
preflight
orpreinstall
) and then make it executable by typing in the terminal:chmod a+x preflight
(orpreinstall
).