Skip to content

Commit

Permalink
Fix FileAlreadyExistsException after server upgrade (fixes #50)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Feb 15, 2025
1 parent 6e5bd83 commit b85ce31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
allprojects {
group 'com.azuriom'
version '1.3.7'
version '1.3.8'
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void loadLibrary(String groupId, String artifactId, String version) thro
Path jar = this.libsFolder.resolve(artifactId + "-" + version + ".jar");

if (!Files.exists(jar)) {
Files.createDirectory(jar.getParent());
Files.createDirectories(jar.getParent());

this.plugin.getLogger().warn("Downloading " + artifactId + " v" + version + "...");

Expand Down

0 comments on commit b85ce31

Please sign in to comment.