diff options
author | Dominik Stadler <centic@apache.org> | 2015-02-23 20:45:21 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2015-02-23 20:45:21 +0000 |
commit | 2cdeca15e0aef38e6ab356f3593354569d7aca8c (patch) | |
tree | a6e1be35be6211fcd1e2cce23d5814bbff45b040 /build.xml | |
parent | 92b1045a50eebc06f85c94a3e7672937caa00a25 (diff) | |
download | poi-2cdeca15e0aef38e6ab356f3593354569d7aca8c.tar.gz poi-2cdeca15e0aef38e6ab356f3593354569d7aca8c.zip |
Bug 57612: Fix checking for proxy/accessible website in TestSignatureInfo
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1661774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -82,7 +82,11 @@ under the License. <property name="POI.testdata.path" value="test-data"/> <property name="java.awt.headless" value="true"/> <property name="additionaljar" value=""/> - <property name="http_proxy" value="${env.http_proxy}"/> + <condition property="http_proxy" + value="${env.http_proxy}" + else=""> + <isset property="env.http_proxy"/> + </condition> <!-- Main: --> <property name="main.resource1.dir" value="src/resources/main"/> |