Skip to content

Commit

Permalink
chore: fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredLunde committed Dec 2, 2024
1 parent d17cda9 commit a564b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/go.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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/*")
Expand Down

0 comments on commit a564b36

Please sign in to comment.