• R/O
  • SSH

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Gradle/Mavenが持っているjarファイルのパスを表示するツール


Commit MetaInfo

修訂936c3d6c3b5cd523457c4fdcd7f3da7df762fd1f (tree)
時間2022-02-26 11:45:24
作者kemono7h
Commiterkemono7h

Log Message

cachesにあるjarファイルは見るべきではないので除外した

Change Summary

差異

diff -r 9bcccea3c80f -r 936c3d6c3b5c src/jp/nanah/dnj/DokonanJar.java
--- a/src/jp/nanah/dnj/DokonanJar.java Sat Feb 26 11:14:33 2022 +0900
+++ b/src/jp/nanah/dnj/DokonanJar.java Sat Feb 26 11:45:24 2022 +0900
@@ -34,7 +34,7 @@
3434 if (dirs != null) {
3535 for (File f : dirs) {
3636 String fname = f.getName();
37- if (fname.equals("caches") || fname.equals("wrapper")) {
37+ if (fname.equals("wrapper")) {
3838 searchFiles(f, null, fileList);
3939 }
4040 }