X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Fmisc%2FHelper.java;h=7fce85fd1fb846cdb114ce3ecde3d56be66bab9f;hb=546961c7d44afc07790196556aaba1103b0ab4e0;hp=0dad6902a685bfb27b2331750315cc6127490bc8;hpb=76e328a7b8a73d1c97ae511054a1b25e6c81f433;p=mir.git diff --git a/source/mir/misc/Helper.java b/source/mir/misc/Helper.java index 0dad6902..7fce85fd 100755 --- a/source/mir/misc/Helper.java +++ b/source/mir/misc/Helper.java @@ -20,7 +20,7 @@ public class Helper { * returns 255 if rsync should not be used */ public static int rsync(){ - if(!Configuration.getProperty("Rsync").toLowerCase().equals("yes")){ + if(!MirConfig.getProp("Rsync").toLowerCase().equals("yes")){ return 255; } @@ -28,7 +28,7 @@ public class Helper { int returnValue = -1; try { Runtime run = Runtime.getRuntime(); - p = run.exec(Configuration.getProperty("Rsync.Script.Path")); + p = run.exec(MirConfig.getProp("Rsync.Script.Path")); returnValue = p.waitFor(); } catch (IOException e) { return returnValue;