Skip to content

Commit 9b78e18

Browse files
committed
Fix: initialize debuggeeArtifactPath at include-time for getArtifactPath()
1 parent 998aee3 commit 9b78e18

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/cfml/DapTestCase.cfm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ variables.capabilities = {};
99
variables.dapHost = "";
1010
variables.dapPort = 0;
1111
variables.debuggeeHttp = "";
12-
variables.debuggeeArtifactPath = "";
12+
// Initialize debuggeeArtifactPath at include-time so getArtifactPath() works before setupDap()
13+
variables.debuggeeArtifactPath = server.system.environment.DEBUGGEE_ARTIFACT_PATH ?: "";
1314
variables.httpThread = "";
1415
variables.httpResult = {};
1516

0 commit comments

Comments
 (0)