We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b86d0b commit c3808a2Copy full SHA for c3808a2
zip-plugin/src/main/java/dev/imprex/zip/BackpackMigrator.java
@@ -41,6 +41,11 @@ public static void checkForMigrations(Path folderPath) {
41
int statisticFailed = 0;
42
43
ZIPLogger.info("Checking for migration data...");
44
+
45
+ if (Files.notExists(folderPath)) {
46
+ ZIPLogger.info("No migrations found.");
47
+ return;
48
+ }
49
50
try (Stream<Path> stream = Files.walk(folderPath, 1)) {
51
Path[] paths = stream
0 commit comments