Skip to content

Commit 827d425

Browse files
Cleanup
1 parent 089b657 commit 827d425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/testcontainers/src/reaper/reaper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ async function createNewReaper(sessionId: string, remoteSocketPath: string): Pro
7878
.withBindMounts([{ source: remoteSocketPath, target: "/var/run/docker.sock" }])
7979
.withLabels({ [LABEL_TESTCONTAINERS_SESSION_ID]: sessionId })
8080
.withWaitStrategy(Wait.forLogMessage(/.*Started.*/));
81-
if (process.env["TESTCONTAINERS_RYUK_VERBOSE"])
81+
if (process.env["TESTCONTAINERS_RYUK_VERBOSE"]) {
8282
container.withEnvironment({ RYUK_VERBOSE: process.env["TESTCONTAINERS_RYUK_VERBOSE"] });
83-
83+
}
8484
if (process.env.TESTCONTAINERS_RYUK_PRIVILEGED === "true") {
8585
container.withPrivilegedMode();
8686
}

0 commit comments

Comments
 (0)