gpt4 book ai didi

xcode - 在 Apple Silicon xcode 上找不到 Swiftlint

转载 作者:行者123 更新时间:2023-12-03 16:01:13 25 4
gpt4 key购买 nike

安装时swiftlint使用自制软件,一切都安装正确,但是当我打开 xcode 时,我看到未安装 swiftlint 的消息。我读了这个 issue &它说自制软件现在安装在此路径下/opt/homebrew使用苹果硅和 xcode 在 /usr/local 中查找 swiftlint ?我怎样才能让 xcode 重新确认我实际上已经安装了 swiftlint。 Swiftlint 肯定已安装,我可以从终端输入 swiftlint 并查看所有命令。

最佳答案

我无法找到如何永久修改 Xcode 构建阶段脚本的 $PATH 变量。此脚本将在运行期间将 Apple Silicon homebrew 路径添加到您的脚本 PATH 中。我在 M1 和 Intel Mac 上对此进行了测试,它对两者都适用。

# Adds support for Apple Silicon brew directory
export PATH="$PATH:/opt/homebrew/bin"

if which swiftlint; then
swiftlint autocorrect && swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi

关于xcode - 在 Apple Silicon xcode 上找不到 Swiftlint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65991508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com