Skip to content

Commit 9eb2b75

Browse files
authored
Merge pull request #890 from lxcmyf/feature/dev_4.9.2
fix(msg): optimize prompt message
2 parents 30b563c + f178202 commit 9eb2b75

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2474,10 +2474,10 @@ Select option: 1
24742474
Display Receive Payment QR Code for the current address.
24752475
Executing this command requires installing 'qrencode' on the terminal in advance.
24762476
Debian/Ubuntu:
2477-
sudo apt update && sudo apt install qrencode
2478-
RHEL/CentOS:
2479-
sudo yum install epel-release && sudo yum install qrencode
2480-
Fedora:
2477+
sudo apt install qrencode
2478+
CentOS:
2479+
sudo yum install qrencode
2480+
RHEL/Fedora:
24812481
sudo dnf install qrencode
24822482
macOS:
24832483
brew install qrencode

src/main/java/org/tron/walletcli/Client.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4134,10 +4134,10 @@ private void showReceivingQrCode() {
41344134
System.out.println(redBoldHighlight("Error: 'qrencode' command not found. Please install it first."));
41354135
System.out.println("Qrencode terminal installation command:");
41364136
System.out.println(greenBoldHighlight("Debian/Ubuntu:"));
4137-
System.out.println("sudo apt update && sudo apt install qrencode");
4138-
System.out.println(greenBoldHighlight("RHEL/CentOS:"));
4139-
System.out.println("sudo yum install epel-release && sudo yum install qrencode");
4140-
System.out.println(greenBoldHighlight("Fedora:"));
4137+
System.out.println("sudo apt install qrencode");
4138+
System.out.println(greenBoldHighlight("CentOS:"));
4139+
System.out.println("sudo yum install qrencode");
4140+
System.out.println(greenBoldHighlight("RHEL/Fedora:"));
41414141
System.out.println("sudo dnf install qrencode");
41424142
System.out.println(greenBoldHighlight("macOS:"));
41434143
System.out.println("brew install qrencode");

src/main/resources/commands.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -819,10 +819,10 @@ Summary:
819819
Display Receive Payment QR Code for the current address.
820820
Executing this command requires installing 'qrencode' on the terminal in advance.
821821
Debian/Ubuntu:
822-
sudo apt update && sudo apt install qrencode
823-
RHEL/CentOS:
824-
sudo yum install epel-release && sudo yum install qrencode
825-
Fedora:
822+
sudo apt install qrencode
823+
CentOS:
824+
sudo yum install qrencode
825+
RHEL/Fedora:
826826
sudo dnf install qrencode
827827
macOS:
828828
brew install qrencode

0 commit comments

Comments
 (0)