Skip to content

Commit 1456be2

Browse files
authored
Update worker.rs
1 parent 5a9857e commit 1456be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bot/src/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl Process {
127127
.stdout(Stdio::piped())
128128
.stderr(Stdio::inherit())
129129
.spawn()
130-
.with_context(|| format!("spawning worker process (path={worker_path:?}).\n\ntry setting the env var {VAR_NAME} to point to the worker binary, e.g. in the cargo target directory. alternatively, follow the instructions in the README that describe how to set up a standalone installation.")?;
130+
.with_context(|| format!("spawning worker process (path={worker_path:?}).\n\ntry setting the env var {VAR_NAME} to point to the worker binary, e.g. in the cargo target directory. alternatively, follow the instructions in the README that describe how to set up a standalone installation."))?;
131131

132132
let mut ret = Self { child: Some(child) };
133133
// Ask for the version and ignore it, as a health check.

0 commit comments

Comments
 (0)