fix import node bugs

This commit is contained in:
CaiHQ 2023-06-06 15:08:29 +08:00
parent 7bb99d3da9
commit 9c77aed029

View File

@ -15,7 +15,7 @@ public class ImportNode {
public String getPath() {
if (path.startsWith("@"))
path.replaceAll("@", "/.depyjs/");
return path.replaceAll("@", "/.depyjs/");
return path;
}
}