Fix create modules dir (#1686)
This commit is contained in:
parent
36d1f8dba7
commit
a72f59d07a
|
|
@ -273,7 +273,7 @@ public class ConfigFileManager {
|
|||
var name = base.relativize(path).toString();
|
||||
if (Files.isDirectory(path)) {
|
||||
try {
|
||||
os.putNextEntry(new ZipEntry(name));
|
||||
os.putNextEntry(new ZipEntry(name + "/"));
|
||||
os.closeEntry();
|
||||
} catch (IOException e) {
|
||||
Log.w(TAG, name, e);
|
||||
|
|
|
|||
Loading…
Reference in New Issue