diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 414eba4..503edc5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,8 +25,6 @@ jobs: cd ./generate/scripts chmod +x ./generator.main.kts ./generator.main.kts - - tree ../../tmp - name: Generate ZIP run: | diff --git a/generate/scripts/generator.main.kts b/generate/scripts/generator.main.kts index fb26ace..4c173b9 100644 --- a/generate/scripts/generator.main.kts +++ b/generate/scripts/generator.main.kts @@ -202,6 +202,8 @@ runBlocking { zipIn.use { var entry = it.nextEntry + Thread.sleep(1000) + while (entry != null) { // 今のところモデルのみ展開 @@ -209,6 +211,7 @@ runBlocking { val path = Paths.get(mcResFolder.path, entry.name) syncMkdir(path.parent.toFile()) Files.write(path, it.readAllBytes()) + println(entry.name) } entry = it.nextEntry @@ -221,8 +224,6 @@ runBlocking { tmpDirJob.join() } - - val preProcTime = stopWatch.elapsed(TimeUnit.MILLISECONDS) println("事前処理完了\t経過時間: ${preProcTime}ms")