Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 38443200BA6 for ; Mon, 3 Oct 2016 22:51:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 36CAA160ACD; Mon, 3 Oct 2016 20:51:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7423D160ADC for ; Mon, 3 Oct 2016 22:51:09 +0200 (CEST) Received: (qmail 74251 invoked by uid 500); 3 Oct 2016 20:51:08 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 74242 invoked by uid 99); 3 Oct 2016 20:51:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Oct 2016 20:51:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7B4D3DFBA0; Mon, 3 Oct 2016 20:51:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulk@apache.org To: commits@groovy.apache.org Message-Id: <59f44240948c4ed0b4e3d14905333ac2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: groovy git commit: fix some badly formed string quoting Date: Mon, 3 Oct 2016 20:51:08 +0000 (UTC) archived-at: Mon, 03 Oct 2016 20:51:10 -0000 Repository: groovy Updated Branches: refs/heads/master 716d3e67e -> 0bbcf6840 fix some badly formed string quoting Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/0bbcf684 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/0bbcf684 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/0bbcf684 Branch: refs/heads/master Commit: 0bbcf6840f5cfa8c7351cd2d615ecff2df05afa2 Parents: 716d3e6 Author: paulk Authored: Tue Oct 4 06:50:23 2016 +1000 Committer: paulk Committed: Tue Oct 4 06:50:57 2016 +1000 ---------------------------------------------------------------------- .../org/codehaus/groovy/tools/shell/commands/DocCommand.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/0bbcf684/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy ---------------------------------------------------------------------- diff --git a/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy b/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy index a18c847..40dadbf 100644 --- a/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy +++ b/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy @@ -109,7 +109,7 @@ class DocCommand extends CommandSupport { } else if (hasAWTDesktopPlatformSupport) { browseWithAWT(urls) } else { - fail 'Browser could not be opened caused by missing platform support for 'java.awt.Desktop'. Please set ' + + fail 'Browser could not be opened due to missing platform support for "java.awt.Desktop". Please set ' + "a $ENV_BROWSER_GROOVYSH or $ENV_BROWSER environment variable referring to the browser binary to " + 'solve this issue.' }