summaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2013-10-01 19:11:55 (GMT)
committerBritney Fransen <brfransen@gmail.com>2013-10-01 19:11:55 (GMT)
commite48db190ecb1c113c5805c739a43d11a9efe103d (patch)
treece24259b81d166ed6d3ee42c46f6d58d516bbfda /build_tools
parent74334a8ca0590e90f00ddbcc7d6849a9d9a09ed3 (diff)
downloadlinhes_dev-e48db190ecb1c113c5805c739a43d11a9efe103d.zip
build.sh: use curl instead of wget because wget doesn't support file// that is used for local disk profiles.
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/archiso/mythvantage/build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_tools/archiso/mythvantage/build.sh b/build_tools/archiso/mythvantage/build.sh
index f2a6887..a7d3c49 100755
--- a/build_tools/archiso/mythvantage/build.sh
+++ b/build_tools/archiso/mythvantage/build.sh
@@ -188,7 +188,8 @@ make_cache_repo() {
for url in ${_urls}
do
echo "downloading $url"
- wget -N ${url}
+ #wget -N ${url}
+ curl -O ${url}
done
cd -