Skip to content

Commit 803280c

Browse files
committed
Test different usages of env variables
1 parent 344b3f1 commit 803280c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
image: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
55
environment:
66
HOME: /tmp
7-
POB_TEST_MODE: "1"
7+
POB_TEST_MODE: 1
88
container_name: pathofbuilding-tests
99
command: busted --lua=luajit
1010
security_opt:

src/Launch.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
--
77

88
-- Check if running in test mode via environment variable
9-
local isTestMode = true--os.getenv("POB_TEST_MODE") == "1"
9+
local isTestMode = os.getenv("POB_TEST_MODE") == "1"
1010

1111
local startTime = GetTime()
1212
APP_NAME = "Path of Building (PoE2)"

0 commit comments

Comments
 (0)