Skip to content

Commit ff22f43

Browse files
committed
fix(cli): fixes missplaced %
1 parent 4e8396d commit ff22f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/grafana-cli/commands/install_command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func downloadFile(pluginName, filePath, url string) (err error) {
166166

167167
src, err := zf.Open()
168168
if err != nil {
169-
log.Errorf("%Failed to open zipfile: v", err)
169+
log.Errorf("Failed to extract file: %v", err)
170170
}
171171

172172
io.Copy(dst, src)

0 commit comments

Comments
 (0)