We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd61cd commit 5949d08Copy full SHA for 5949d08
1 file changed
src/Launch.lua
@@ -4,13 +4,9 @@
4
-- Module: Launch
5
-- Program entry point; loads and runs the Main module within a protected environment
6
--
7
-local env_pob_test_mode_raw = os.getenv("POB_TEST_MODE")
8
9
-print("--- Debugging POB_TEST_MODE ---")
10
-print("Raw POB_TEST_MODE from os.getenv:", tostring(env_pob_test_mode_raw))
11
-local isTestMode = env_pob_test_mode_raw == "1"
12
-print("isTestMode calculated value:", tostring(isTestMode))
13
-print("-------------------------------")
+-- This env variable is set in both test.yml and docker-compose.yml
+local isTestMode = os.getenv("POB_TEST_MODE") == "1"
14
15
local startTime = GetTime()
16
APP_NAME = "Path of Building (PoE2)"
0 commit comments