fix a typo

This commit is contained in:
Ping Xiao 2020-07-11 12:17:15 +08:00
parent 5ae9643992
commit 81c7f6e7dc
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ public class TDNode {
public void start() {
String selfPath = System.getProperty("user.dir");
String binPath = "";
String projDir = selfPath + "/../../../../";
String projDir = selfPath + "/../../../";
try {
ArrayList<String> taosdPath = new ArrayList<>();
@ -68,7 +68,7 @@ public class TDNode {
return;
} else {
for(String p : taosdPath) {
if(!p.contains("packing")) {
if(!p.contains("packaging")) {
binPath = p;
}
}