summaryrefslogtreecommitdiffstats
path: root/scripts/create-pull-request
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2011-05-14 04:16:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-19 23:38:07 +0100
commit027667824ca78d4f118d1917a515a675d966985c (patch)
treec02ae528347c4f97b4f7c4550f48cf07c79e8c63 /scripts/create-pull-request
parent95185de6f149a495201701d260921339e3dfaebd (diff)
downloadopenembedded-core-027667824ca78d4f118d1917a515a675d966985c.tar.gz
create-pull-request: do not check certificate
Some remotes can use HTTPS and we don't need to check the certificate of the host so wget call is changed to avoid it. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'scripts/create-pull-request')
-rwxr-xr-xscripts/create-pull-request2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-pull-request b/scripts/create-pull-request
index 202d99d120..9dbd55a9c0 100755
--- a/scripts/create-pull-request
+++ b/scripts/create-pull-request
@@ -112,7 +112,7 @@ esac
# Perform a sanity test on the web URL. Issue a warning if it is not
# accessible, but do not abort as users may want to run offline.
if [ -n "$WEB_URL" ]; then
- wget -q $WEB_URL -O /dev/null
+ wget --no-check-certificate -q $WEB_URL -O /dev/null
if [ $? -ne 0 ]; then
echo "WARNING: Branch '$BRANCH' was not found on the contrib git tree."
echo " Please check your remote and branch parameter before sending."