Skip to content

Commit 6f5df45

Browse files
fix: reword error message when we cannot stat inner elastic-agent binary
1 parent 521e771 commit 6f5df45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/windows/archive-proxy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func main() {
3737
exeTopPath := filepath.Dir(exeAbsPath)
3838
nestedAgentBinaryPath := filepath.Join(exeTopPath, "data", fmt.Sprintf("elastic-agent-%s", CommitSHA), "elastic-agent.exe")
3939
if _, err := os.Stat(nestedAgentBinaryPath); err != nil {
40-
log.Fatalf("Unable to stat nested agent binary %q: %v\n", nestedAgentBinaryPath, err)
40+
log.Fatalf("Unable to stat inner agent binary at %q: %v\n", nestedAgentBinaryPath, err)
4141
}
4242

4343
// Create the arguments

0 commit comments

Comments
 (0)