すべてが10.5で動作しましたが、今度は私のPackageMakerインストールプロジェクトが壊れています。私は今、数日間の問題を戦ってきた、とSnow Leopardでプリインストールスクリプトを使用したPackageMakerインストールは壊れていますか?
- のSnow Leopard(OS X 10.6.1)は私が知識 の非常に、非常に基本的なちらほらを欠いていPackageMakerインストール
- が壊れましたか、問題を絞り込むために
、私はこのポイントに得ている:
- は、インストールした新しいPackageMakerインストール
- を作成します。私のホームdirectoyにJPEG画像
- 何
#!/bin.sh exit 0
実行上記を行わないpreinstall
スクリプトを定義して...そして、それはクロックワーク
Sep 14 15:09:45 manoa installd[5620]: PackageKit: ----- Begin install -----
Sep 14 15:09:45 manoa installd[5620]: PackageKit: request=PKInstallRequest <1 packages, destination=/>
Sep 14 15:09:45 manoa installd[5620]: PackageKit: packages=(\n "PKLeopardPackage <file://localhost/Users/stu/Desktop/asdf.pkg>"\n)
Sep 14 15:09:46 manoa installd[5620]: PackageKit: Extracting /Users/stu/Desktop/asdf.pkg (destination=/var/folders/Hb/HbXJFyEpFaupt5QyLN-pTk+++TI/-Tmp-/PKInstallSandbox-tmp/Root/~, uid=501)
Sep 14 15:09:46 manoa installd[5620]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.cmlS2H/Scripts/test.test.5year_header.pkg.PFrHNB
Sep 14 15:09:46 manoa installd[5620]: PackageKit: *** launch path not accessible
Sep 14 15:09:46 manoa installd[5620]: PackageKit: Install Failed: PKG: pre-install scripts for "test.test.5year_header.pkg"\nError Domain=PKInstallErrorDomain Code=112 UserInfo=0x100149430 "An error occurred while running scripts from the package “asdf”." {\n NSFilePath = "./preinstall";\n NSLocalizedDescription = "An error occurred while running scripts from the package \U201casdf\U201d.";\n NSURL = "file://localhost/Users/stu/Desktop/asdf.pkg";\n PKInstallPackageIdentifier = "test.test.5year_header.pkg";\n}
Sep 14 15:09:46 manoa Installer[5614]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 UserInfo=0x1195917c0 "An error occurred while running scripts from the package “asdf”."
Sep 14 15:09:46 manoa Installer[5614]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
Sep 14 15:09:47 manoa Installer[5614]: IFDInstallController 144040 state = 7
Sep 14 15:09:47 manoa Installer[5614]: Displaying 'Install Failed' UI.
Sep 14 15:09:47 manoa Installer[5614]: 'Install Failed' UI displayed message:'The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.'.
のような以下のエラーメッセージで失敗見て
/private/tmp/PKInstallSandbox.cmlS2H/Scripts/test.test.5year_header.pkg.PFrHNB/
にファイルがありません。問題はPackageMakerであり、私ではないと思います。しかし、私はOS Xソフトウェアのインストールの世界では新しいので、疑問が残っています。
質問:プリインストールスクリプトを使用したPackageMakerは、OS X 10.6でに壊れていますか?または私は理解していないプリインストールスクリプトに関するいくつかの要件がありますか?
にこの解決策が見つかり
あなたのシェバングラインが間違っているようです。たぶん "#!/ bin.sh" –
のようになります。それはまだ実行されますが、それは良いキャッチです...それを試してみましょう。 –