| Submitter | Darren Hart |
|---|---|
| Date | May 18, 2011, 5:18 p.m. |
| Message ID | <47bd913c77f1eb9dec86fbdc2cd31ae365090f00.1305738598.git.dvhart@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/4375/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/scripts/create-pull-request b/scripts/create-pull-request index 202d99d..9dbd55a 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."