1
i'm working in generating docset for a ios project, but stumped.
如您所知,我們可以爲xcode構建階段編寫一個sh腳本運行腳本;我希望它運行只有在發行版本&項目中已經安裝的軟件appledoc,,所以我把它寫成如下:如何在xcode構建階段運行腳本檢查appledoc是否有效?
# appledoc Xcode script
APPLEDOC_PATH=`which appledoc`
if [ $APPLEDOC_PATH ]; then
if [ "${CONFIGURATION}" = "Release" ]; then
#============================#
# some code here, omit! #
#============================#
fi
fi
似乎不工作!並且我知道問題是命令'其中appledoc'出錯了!所以問題是:
how to check appledoc valid or not in the xcode build phases run script? any ideas? please give a hand! thanks!
嗯......你可以通過git安裝appledoc,爲什麼要用macports呢?好吧,這與這個問題沒有關係。關於這個問題,到目前爲止我不知道太... ... :( – kenmux