Fix typo in error message
This commit is contained in:
parent
d64ca7248b
commit
21645c507e
|
@ -8,7 +8,7 @@ fn get_go_bin() -> String {
|
||||||
Command::new("/usr/bin/which")
|
Command::new("/usr/bin/which")
|
||||||
.arg("go")
|
.arg("go")
|
||||||
.output()
|
.output()
|
||||||
.map_err(|e| println!("cargo:warning=Coudling find which command: {}", e))
|
.map_err(|e| println!("cargo:warning=Couldn't find `which` command: {}", e))
|
||||||
.expect("`which` command not found")
|
.expect("`which` command not found")
|
||||||
.stdout,
|
.stdout,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue