1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Path problem.

This commit is contained in:
Cedric Beust 2015-10-20 04:06:27 -07:00
parent 3af480fd8c
commit 1a362091b0

View file

@ -38,7 +38,7 @@ public class Gpg {
if (gpg != null) { if (gpg != null) {
val directory = files.get(0).parentFile.absoluteFile val directory = files.get(0).parentFile.absoluteFile
files.forEach { file -> files.forEach { file ->
val ascFile = File(directory, file.absolutePath + ".asc") val ascFile = File(file.absolutePath + ".asc")
ascFile.delete() ascFile.delete()
val allArgs = arrayListOf<String>() val allArgs = arrayListOf<String>()
allArgs.add(gpg) allArgs.add(gpg)