0

使用以下脚本创建新的聚合目标后出现这些错误:

错误:

oclint not found, analyzing stopped
Command /bin/sh failed with exit code 1

运行脚本外壳:/bin/sh

脚本:

source ~/.bash_profile

hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi

cd ${TARGET_TEMP_DIR}

if [ ! -f compile_commands.json ]; then
echo "[*] compile_commands.json not found, possibly clean was performed"
echo "[*] starting xcodebuild to rebuild the project.."
# clean previous output
if [ -f xcodebuild.log ]; then
rm xcodebuild.log
fi

cd ${SRCROOT}

xcodebuild clean

#build xcodebuild.log
xcodebuild | tee ${TARGET_TEMP_DIR}/xcodebuild.log
#xcodebuild <options>| tee ${TARGET_TEMP_DIR}/xcodebuild.log

echo "[*] transforming xcodebuild.log into compile_commands.json..."
cd ${TARGET_TEMP_DIR}
#transform it into compile_commands.json
oclint-xcodebuild

echo "[*] copy compile_commands.json to the project root..."
cp ${TARGET_TEMP_DIR}/compile_commands.json ${SRCROOT}/compile_commands.json

fi

echo "[*] starting analyzing"
cd ${TARGET_TEMP_DIR}
oclint-json-compilation-database | sed 's/\(.*\.\m\{1,2\}:[0-9]*:[0-9]*:\)/\1 warning:/'

我是否必须将 xcode 默认脚本更改为 bash?我该怎么做?

4

1 回答 1

1

您的路径中没有 OCLint。要在您的路径中获取 OCLint,您可以尝试删除

source ~/.bash_profile

并将其替换为

OCLINT_HOME= **path to OClint downloaded and extracted folder**
export PATH=$OCLINT_HOME/bin:$PATH

你可以试试这个链接寻求帮助:https ://stackoverflow.com/a/30053104/3141464

于 2015-05-08T14:13:32.023 回答