Fix typo in error message

This commit is contained in:
danielsanchezq 2022-09-27 12:20:20 +02:00
parent d64ca7248b
commit 21645c507e
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ fn get_go_bin() -> String {
Command::new("/usr/bin/which")
.arg("go")
.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")
.stdout,
)