Skip to content

Commit

Permalink
Polish alibaba#94 : fixed logback missing
Browse files Browse the repository at this point in the history
  • Loading branch information
mercyblitz committed Oct 2, 2018
1 parent baa3e30 commit 91e8795
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private List<String> loadSql(String sqlFile) throws Exception {
URL url = classLoader.getResource(sqlFile);
sqlFileIn = url.openStream();
} else {
File file = new File(System.getProperty(NACOS_HOME_KEY) + File.separator + "conf" + File.separator + sqlFile);
File file = new File(System.getProperty(NACOS_HOME_KEY) + "/conf/schema.sql");
sqlFileIn = new FileInputStream(file);
}

Expand Down

0 comments on commit 91e8795

Please sign in to comment.