如何为 Mac 操作系统的 packagemaker 编写预安装脚本

发布于 2024-08-23 02:48:28 字数 310 浏览 2 评论 0原文

您好,我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗弃M 2024-08-30 02:48:28

要创建目录,您可以使用以下预检或预安装脚本:

#!/bin/sh
mkdir "/Applications/My Directory"

将其放入文件(名为 preflightpreinstall)中,然后通过在终端中键入使其可执行:chmod a+x 预检(或预安装)。

To create a directory, you could have the following preflight or preinstall script:

#!/bin/sh
mkdir "/Applications/My Directory"

Put that into a file (named preflight or preinstall) and then make it executable by typing in the terminal: chmod a+x preflight (or preinstall).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文