Repository: karaf Updated Branches: refs/heads/karaf-4.0.x 85ef2e481 -> 3f48b8217
[KARAF-4814] Fix character in stop script The stop script contains an ` ` for what should be a regular space. Signed-off-by: Lars Kiesow <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/3f48b821 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/3f48b821 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/3f48b821 Branch: refs/heads/karaf-4.0.x Commit: 3f48b8217d2928d9206827739d15d7493031f44d Parents: 85ef2e4 Author: Lars Kiesow <[email protected]> Authored: Wed Nov 2 17:59:12 2016 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Sun Nov 13 09:53:01 2016 +0100 ---------------------------------------------------------------------- .../features/base/src/main/filtered-resources/resources/bin/stop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/3f48b821/assemblies/features/base/src/main/filtered-resources/resources/bin/stop ---------------------------------------------------------------------- diff --git a/assemblies/features/base/src/main/filtered-resources/resources/bin/stop b/assemblies/features/base/src/main/filtered-resources/resources/bin/stop index 35a698b..695884e 100755 --- a/assemblies/features/base/src/main/filtered-resources/resources/bin/stop +++ b/assemblies/features/base/src/main/filtered-resources/resources/bin/stop @@ -145,7 +145,7 @@ run() { KARAF_BASE=`cygpath --path --windows "$KARAF_BASE"` KARAF_DATA=`cygpath --path --windows "$KARAF_DATA"` KARAF_ETC=`cygpath --path --windows "$KARAF_ETC"` - if [ ! -z "$CLASSPATH" ]; then + if [ ! -z "$CLASSPATH" ]; then CLASSPATH=`cygpath --path --windows "$CLASSPATH"` fi fi
