Skip to content

Commit 3481d09

Browse files
committed
add LAB_STATION env key to the blackbox process
1 parent c37464f commit 3481d09

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- The environment key `PHP_CS_FIXER_IGNORE_ENV` is forwarded to PHP CS Fixer when defined by the user.
8+
- The environment key `LAB_STATION` is provided to the BlackBox process to allow to define a specific configuration in this environment.
89

910
## 4.1.0 - 2024-03-10
1011

src/Trigger/BlackBox.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ private function run(Console $console, OperatingSystem $os): Console
6767
$key,
6868
['PATH', 'LC_TERMINAL'],
6969
true,
70-
));
70+
))
71+
->put('LAB_STATION', 'true');
7172

7273
$process = $os
7374
->control()

0 commit comments

Comments
 (0)