aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/sh/vespa-version-generator.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vespa-feed-client/src/main/sh/vespa-version-generator.sh')
-rwxr-xr-xvespa-feed-client/src/main/sh/vespa-version-generator.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/vespa-feed-client/src/main/sh/vespa-version-generator.sh b/vespa-feed-client/src/main/sh/vespa-version-generator.sh
index 44fb7d167db..cd4684eb24d 100755
--- a/vespa-feed-client/src/main/sh/vespa-version-generator.sh
+++ b/vespa-feed-client/src/main/sh/vespa-version-generator.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# Extracts the current version number (V_TAG_COMPONENT) from vtag.map and outputs this into a Java class.
# This replaces vespajlib/../VersionTagger.java as this module cannot depend on that, nor the dependencies
@@ -18,7 +18,7 @@ versionNumber=$(cat $source | grep V_TAG_COMPONENT | awk '{print $2}' )
cat > $destination <<- END
package ai.vespa.feed.client.impl;
-class Vespa {
- static final String VERSION = "$versionNumber";
+public class Vespa {
+ public static final String VERSION = "$versionNumber";
}
END