fix installer

This commit is contained in:
miloschwartz
2025-09-18 11:55:01 -04:00
parent 6d7091fb5c
commit a1b2e36a5d
2 changed files with 2 additions and 2 deletions

View File

@@ -220,7 +220,7 @@ func main() {
} }
} }
if !config.HybridMode && checkIsPangolinInstalledWithHybrid() { if !config.HybridMode {
// Setup Token Section // Setup Token Section
fmt.Println("\n=== Setup Token ===") fmt.Println("\n=== Setup Token ===")

View File

@@ -2,7 +2,7 @@ import path from "path";
import { fileURLToPath } from "url"; import { fileURLToPath } from "url";
// This is a placeholder value replaced by the build process // This is a placeholder value replaced by the build process
export const APP_VERSION = "1.10.0"; export const APP_VERSION = "1.10.1";
export const __FILENAME = fileURLToPath(import.meta.url); export const __FILENAME = fileURLToPath(import.meta.url);
export const __DIRNAME = path.dirname(__FILENAME); export const __DIRNAME = path.dirname(__FILENAME);