From a564b36312df4849708b30458c3883dfab798ca4 Mon Sep 17 00:00:00 2001 From: Jared Lunde Date: Mon, 2 Dec 2024 13:39:55 -0800 Subject: [PATCH] chore: fix lints --- src/providers/go.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/go.rs b/src/providers/go.rs index 3f490586c..874ea6aa5 100644 --- a/src/providers/go.rs +++ b/src/providers/go.rs @@ -73,7 +73,7 @@ impl Provider for GolangProvider { } let build_command = if let Some(name) = env.get_config_variable("GO_BIN") { - Some(format!("go build -o {BINARY_NAME} cmd/{}", name)) + Some(format!("go build -o {BINARY_NAME} ./cmd/{name}")) } else if app.includes_directory("cmd") { // Try to find a command in the cmd directory app.find_directories("cmd/*")