Skip to content

Commit b579b96

Browse files
committed
fix(vipe): Remove unnecessary dash in tmp file name
1 parent c36c789 commit b579b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/vipe/vipe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func run(cmd *cobra.Command, _ []string) error {
4747
suffix = "." + suffix
4848
}
4949

50-
tmp, err := os.CreateTemp("", "vipe-*-"+suffix)
50+
tmp, err := os.CreateTemp("", "vipe-*"+suffix)
5151
if err != nil {
5252
return err
5353
}

0 commit comments

Comments
 (0)