2011-07-19 81 views

回答

3
cd ~/yoursourcedir/ 
ant 
if [[ $? -ne 0 ]] 
then 
    echo "error happend" 
fi 

$?包含您的最後一個命令的錯誤代碼,在這種情況下ant-ne 0表示不等於0,所以如果發生錯誤,請執行echo

您可以指定標準paramters螞蟻,即你的構建文件:

ant -buildfile build.xml 

Summary of ant run options

+0

感謝Cularis ...我會嘗試這個!!!! – trilawney

+0

顯示螞蟻未找到錯誤!!!! – trilawney

+0

螞蟻是否正確安裝?在命令行中輸入「ant」時會顯示什麼內容? – Jacob