在Xcode中切换运行脚本构建阶段

时间:2014-11-20 19:45:36

标签: ios xcode ios8 xcode6 run-script

我有一个运行脚本构建阶段,我已添加到Xcode项目中。

我希望能够在我希望它运行时切换此运行脚本,并在我不运行时关闭。

这在Xcode中是否可行,如果可以,怎么办呢?

1 个答案:

答案 0 :(得分:1)

我曾经在第一行写exit来切换脚本,#exit来切换,就像这样:

关闭脚本,例如SwiftLint:

exit
if which swiftlint >/dev/null; then
  swiftlint
else
  echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi

开启:

#exit
if which swiftlint >/dev/null; then
  swiftlint
else
  echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi

您只需要修改1个字符是否注释掉。