getGuiInstallPath method

String getGuiInstallPath()

Implementation

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