You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/02/08 09:58:33 UTC

[hop] branch master updated: HOP-3737: fix documentation url for snapshot

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 93191ad  HOP-3737: fix documentation url for snapshot
     new 27608f3  Merge pull request #1340 from hansva/master
93191ad is described below

commit 93191ad26a936719c823f60d49f93696c49018c7
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Tue Feb 8 10:20:37 2022 +0100

    HOP-3737: fix documentation url for snapshot
---
 core/src/main/java/org/apache/hop/core/Const.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/hop/core/Const.java b/core/src/main/java/org/apache/hop/core/Const.java
index 7e67390..051ac4c 100644
--- a/core/src/main/java/org/apache/hop/core/Const.java
+++ b/core/src/main/java/org/apache/hop/core/Const.java
@@ -1520,7 +1520,7 @@ public class Const {
     String version = Const.class.getPackage().getImplementationVersion();
 
     if (version == null || version.endsWith("SNAPSHOT")) {
-      version = "latest";
+      version = "next";
     }
 
     return url + version + "/";