This is an automated email from the ASF dual-hosted git repository.
vinoth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 70a1040 [MINOR] Beautify the cli banner (#1089)
70a1040 is described below
commit 70a1040998deb4585f6622e23f887dba21556cbd
Author: lamber-ken <[email protected]>
AuthorDate: Tue Dec 10 05:24:42 2019 +0800
[MINOR] Beautify the cli banner (#1089)
* Add one empty line
* replace Cli to CLI
* replace Hoodie to Apache Hudi
---
.../org/apache/hudi/cli/HoodieSplashScreen.java | 26 +++++++++++++---------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/hudi-cli/src/main/java/org/apache/hudi/cli/HoodieSplashScreen.java
b/hudi-cli/src/main/java/org/apache/hudi/cli/HoodieSplashScreen.java
index 53709d6..b7f016b 100644
--- a/hudi-cli/src/main/java/org/apache/hudi/cli/HoodieSplashScreen.java
+++ b/hudi-cli/src/main/java/org/apache/hudi/cli/HoodieSplashScreen.java
@@ -35,16 +35,20 @@ public class HoodieSplashScreen extends
DefaultBannerProvider {
System.out.println("HoodieSplashScreen loaded");
}
- private static String screen =
"============================================" + OsUtils.LINE_SEPARATOR
- + "* *" + OsUtils.LINE_SEPARATOR
- + "* _ _ _ _ *" + OsUtils.LINE_SEPARATOR
- + "* | | | | | | (_) *" + OsUtils.LINE_SEPARATOR
- + "* | |__| | __| | - *" + OsUtils.LINE_SEPARATOR
- + "* | __ || | / _` | || *" + OsUtils.LINE_SEPARATOR
- + "* | | | || || (_| | || *" + OsUtils.LINE_SEPARATOR
- + "* |_| |_|\\___/ \\____/ || *" +
OsUtils.LINE_SEPARATOR
- + "* *" + OsUtils.LINE_SEPARATOR
- + "============================================" +
OsUtils.LINE_SEPARATOR;
+ private static String screen =
"===================================================================" +
OsUtils.LINE_SEPARATOR
+ + "* ___ ___ *"
+ OsUtils.LINE_SEPARATOR
+ + "* /\\__\\ ___ /\\ \\ ___
*" + OsUtils.LINE_SEPARATOR
+ + "* / / / /\\__\\ / \\ \\ /\\ \\
*" + OsUtils.LINE_SEPARATOR
+ + "* / /__/ / / / / /\\ \\ \\ \\ \\ \\
*" + OsUtils.LINE_SEPARATOR
+ + "* / \\ \\ ___ / / / / / \\ \\__\\ / \\__\\
*" + OsUtils.LINE_SEPARATOR
+ + "* / /\\ \\ /\\__\\ / /__/ ___ / /__/ \\ |__| / /\\/__/
*" + OsUtils.LINE_SEPARATOR
+ + "* \\/ \\ \\/ / / \\ \\ \\ /\\__\\ \\ \\ \\ / / / /\\/ / /
*" + OsUtils.LINE_SEPARATOR
+ + "* \\ / / \\ \\ / / / \\ \\ / / / \\ /__/
*" + OsUtils.LINE_SEPARATOR
+ + "* / / / \\ \\/ / / \\ \\/ / / \\ \\__\\
*" + OsUtils.LINE_SEPARATOR
+ + "* / / / \\ / / \\ / / \\/__/
*" + OsUtils.LINE_SEPARATOR
+ + "* \\/__/ \\/__/ \\/__/ Apache Hudi CLI
*" + OsUtils.LINE_SEPARATOR
+ + "* *"
+ OsUtils.LINE_SEPARATOR
+ + "==================================================================="
+ OsUtils.LINE_SEPARATOR;
public String getBanner() {
return screen;
@@ -55,7 +59,7 @@ public class HoodieSplashScreen extends DefaultBannerProvider
{
}
public String getWelcomeMessage() {
- return "Welcome to Hoodie CLI. Please type help if you are looking for
help. ";
+ return "Welcome to Apache Hudi CLI. Please type help if you are looking
for help. ";
}
@Override