Skip to content

Commit

Permalink
fix: tmp file name
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsm-dev committed Jan 3, 2022
1 parent 841f4e1 commit a4683a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func extractBinary(source *bytes.Reader, os string) (binary io.ReadCloser, err e
if err != nil {
return nil, err
}
tmpfile, err := ioutil.TempFile("", "temp-grc")
tmpfile, err := ioutil.TempFile("", "temp-loli")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit a4683a2

Please sign in to comment.