adt_installer: not download repo page

Add "--spider" argument to wget command, since we don't need to download
repo page, just check that it is there.

(From OE-Core rev: 72f24557bceace990e8e5d2d3b91586fc394cc3b)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chong Lu
2014-07-04 16:45:16 +08:00
committed by Richard Purdie
parent 018e85e62d
commit 6686f75b35

View File

@@ -379,8 +379,8 @@ validate_config
check_result
#check adt_repo exist
wget $YOCTOADT_REPO 2>&1 | tee -a "$YOCTOADT_INSTALL_LOG_FILE"
if grep -q "ERROR 404: Not Found" $YOCTOADT_INSTALL_LOG_FILE; then
wget --spider $YOCTOADT_REPO 2>&1 | tee -a "$YOCTOADT_INSTALL_LOG_FILE"
if grep -q "404 Not Found" $YOCTOADT_INSTALL_LOG_FILE; then
echo -e "[ADT_INST] Error: YOCTOADT_REPO does not exist: $YOCTOADT_REPO"
echo -e "\n#############################################################################"
echo -e "# Meet error(s) when installing Yocto ADT! Please check log file for details. "