Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirosakiMio committed Feb 3, 2025
1 parent 25f2818 commit 8e2722d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ android {
println(runtimeDir)
def files = fileTree(dir: runtimeDir, include: ['*.tar.xz'])
files.forEach { File file ->
if (arch != 'all' && !file.getName().contains(arch) && !file.getName().contains("universal")) {
if (arch != 'all' && !file.getName().contains("universal") && file.getName() != "bin-${arch}.tar.xz" ) {
print("delete:${file} :")
println(delete(file))
}
Expand Down

0 comments on commit 8e2722d

Please sign in to comment.