macOS Sierraのゲートキーパーはビットピッカーであるようです。とにかく、それは私が何年か前に作った小さなユーティリティを、迷惑なエラーを引き起こす原因にしています。macOSのAppTranslocationに関するエラーSierra
私はまだシエラのボンネットの変化を掘り下げる時間がなかったので、エラーを修正する方法がわかりません。誰もAppTranslocationに関連するエラーを処理し、修正する経験がありますか?
コードとエラーフォロー:
コード:
tell application "Finder"
set currentDir to POSIX path of ((container of (path to me)) as text)
end tell
set currentDir to quoted form of currentDir
set lib80211 to quoted form of "AirPort Utility 5.6.1 Launcher.app/Contents/Resources/Apple80211.framework/Versions/A/Apple80211"
do shell script "export DYLD_INSERT_LIBRARIES=" & currentDir & lib80211 & "
cd " & currentDir & "AirPort\\ Utility\\ 5.6.1.app/Contents/MacOS
./AirPort\\ Utility"
エラー:あなたはDEVのWebサイトからもう一度AirMacユーティリティランチャーをダウンロードする必要が
sh: line 1: cd: /private/var/folders/t4/7k5z832d2tjd4xpzvvq43n4m0000gn/T/AppTranslocation/23AF67A4-3DF7-4982-A1A3-B019CDACB4C2/dAirPort Utility 5.6.1.app/Contents/MacOS: No such file or directory
sh: line 2: ./AirPort Utility: No such file or directory (127)
私はタイムマシンのバックアップから2つのファイルを取得していましたが、かなり時間がかかっていましたが、あなたの提案のおかげで、ファイルを少し動かしてしまいました。 – malhal