JDK8 throws IOException on the build server. Try xdg-open fallback then.
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 15 May 2014 11:38:27 +0200
changeset 1574d51a5533a2e7
parent 1573 e2e9fb660c85
child 1619 a7bf87c2c1d9
JDK8 throws IOException on the build server. Try xdg-open fallback then.
launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java
     1.1 --- a/launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java	Wed May 14 21:43:16 2014 +0200
     1.2 +++ b/launcher/fx/src/main/java/org/apidesign/bck2brwsr/launcher/BaseHTTPLauncher.java	Thu May 15 11:38:27 2014 +0200
     1.3 @@ -547,6 +547,9 @@
     1.4              } catch (UnsupportedOperationException ex) {
     1.5                  LOG.log(Level.INFO, "Desktop.browse not supported: {0}", ex.getMessage());
     1.6                  LOG.log(Level.FINE, null, ex);
     1.7 +            } catch (IOException ex) {
     1.8 +                LOG.log(Level.INFO, "Desktop.browse failed: {0}", ex.getMessage());
     1.9 +                LOG.log(Level.FINE, null, ex);
    1.10              }
    1.11          }
    1.12          {