String appOutputPath = null;
if (myHost.osType().equals("UNIX")) {
appOutputPath = myInstance.generateOutputPath(myApplication.unixOutputPath());
} else if (myHost.osType().equals("WINDOWS")) {
appOutputPath = myInstance.generateOutputPath(myApplication.winOutputPath());
} else if (myHost.osType().equals("MACOSX")) {
appOutputPath = myInstance.generateOutputPath(myApplication.macOutputPath());
}
if (!safeEquals(myInstance.outputPath(), appOutputPath)) {