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();
|
var name = base.relativize(path).toString();
|
||||||
if (Files.isDirectory(path)) {
|
if (Files.isDirectory(path)) {
|
||||||
try {
|
try {
|
||||||
os.putNextEntry(new ZipEntry(name));
|
os.putNextEntry(new ZipEntry(name + "/"));
|
||||||
os.closeEntry();
|
os.closeEntry();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
Log.w(TAG, name, e);
|
Log.w(TAG, name, e);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue