Skip to content

Commit

Permalink
Merge pull request #145 from oxymore-tech/develop
Browse files Browse the repository at this point in the history
Merge develop into master
  • Loading branch information
JBGamond authored May 24, 2021
2 parents ee07d80 + fa72465 commit 6789091
Show file tree
Hide file tree
Showing 16 changed files with 548 additions and 376 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public PathService() {

public PathService(Path dataPath) {
this.dataPath = dataPath;
LOGGER.info("Data path : {}", dataPath);
LOGGER.info("Data path : {}", dataPath.toAbsolutePath());
}

public Path projectDir(String projectId) {
Expand All @@ -39,6 +39,9 @@ public Path deletePath(String projectId) {
}

public List<Path> toDeleteProject() throws IOException {
if (!Files.isDirectory(dataPath)) {
return List.of();
}
return Files.list(dataPath)
.filter(p -> p.getFileName().toString().startsWith(DELETE_PREFIX))
.collect(Collectors.toUnmodifiableList());
Expand Down
Empty file added front/.npmrc
Empty file.
Loading

0 comments on commit 6789091

Please sign in to comment.