We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf65b1 commit fb0c5a1Copy full SHA for fb0c5a1
scripts/run-with-logs.ts
@@ -114,9 +114,9 @@ function ensureLogFileEnv(env: NodeJS.ProcessEnv): NodeJS.ProcessEnv {
114
}
115
116
const runIdRaw =
117
- (env.RUN_ID && env.RUN_ID.trim().length > 0
+ env.RUN_ID && env.RUN_ID.trim().length > 0
118
? env.RUN_ID.trim()
119
- : undefined) ?? `${nowStamp()}-${randomSuffix()}`;
+ : `${nowStamp()}-${randomSuffix()}`;
120
const runId = sanitizeRunId(runIdRaw);
121
122
const dir = join(process.cwd(), "logs");
0 commit comments