Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
We should use String#toLowerCase .
Browse files Browse the repository at this point in the history
  • Loading branch information
SNWCreations committed May 15, 2022
1 parent 3da496b commit c0a29c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/snw/buildtoolsplus/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public static void main(String[] args) throws Exception {
System.exit(1);
} else {
System.out.println();
System.out.println("成功!你的服务端已经构建。文件是: " + compileTarget.value(options) + "-" + minecraftVersionResult + ".jar");
System.out.println("成功!你的服务端已经构建。文件是: " + compileTarget.value(options).toLowerCase() + "-" + minecraftVersionResult + ".jar");
System.out.println("感谢使用 BuildTools+ !");
}
}
Expand Down

0 comments on commit c0a29c0

Please # to comment.