summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer
diff options
context:
space:
mode:
authorChong Lu <Chong.Lu@windriver.com>2014-07-04 16:45:16 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-08 11:19:50 +0100
commit72f24557bceace990e8e5d2d3b91586fc394cc3b (patch)
treeb1a921af077ba095daac2247fcc5a83e90cc0ea9 /meta/recipes-devtools/installer
parentd55df5c6a707a3cf5e8d95896b1e43193482d95f (diff)
downloadopenembedded-core-72f24557bceace990e8e5d2d3b91586fc394cc3b.tar.gz
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. Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/installer')
-rwxr-xr-xmeta/recipes-devtools/installer/adt-installer/adt_installer4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index 7fc37f82fc..24db247910 100755
--- a/meta/recipes-devtools/installer/adt-installer/adt_installer
+++ b/meta/recipes-devtools/installer/adt-installer/adt_installer
@@ -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. "