Use current directory explicitly for bundle updator (#1316)
This commit is contained in:
committed by
Anuken
parent
5f1ea4b098
commit
eb70283355
@@ -15,7 +15,7 @@ public class BundleLauncher{
|
|||||||
OrderedMap<String, String> base = new OrderedMap<>();
|
OrderedMap<String, String> base = new OrderedMap<>();
|
||||||
PropertiesUtils.load(base, new InputStreamReader(new FileInputStream(file)));
|
PropertiesUtils.load(base, new InputStreamReader(new FileInputStream(file)));
|
||||||
Array<String> removals = new Array<>();
|
Array<String> removals = new Array<>();
|
||||||
Fi.get("").walk(child -> {
|
Fi.get(".").walk(child -> {
|
||||||
if(child.name().equals("bundle.properties") || child.isDirectory() || child.toString().contains("output"))
|
if(child.name().equals("bundle.properties") || child.isDirectory() || child.toString().contains("output"))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user