只有在项目已在特定构建配置中运行时才会在Xcode中运行post-actions脚本(在Release中发生,不在Debug中)。
非常感谢
答案 0 :(得分:13)
是;在您的脚本中,将设置$CONFIGURATION
变量:
#!/bin/sh
if [ "$CONFIGURATON" != "Release" ]; then
exit 0
fi
# Does stuff only in Release build
请参阅this SO question以获取您可能感兴趣的其他Xcode变量的列表。