getGuiInstallPath method
Implementation
String getGuiInstallPath() {
if (app.isDevMode) {
return p.join(getHomePath(), kCacheDirDev, kGuiDir);
} else {
return p.join(getHomePath(), kCacheDir, kGuiDir, app.version);
}
}
String getGuiInstallPath() {
if (app.isDevMode) {
return p.join(getHomePath(), kCacheDirDev, kGuiDir);
} else {
return p.join(getHomePath(), kCacheDir, kGuiDir, app.version);
}
}