We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258eacb commit aea3cc5Copy full SHA for aea3cc5
arduino/resources/helpers.go
@@ -40,7 +40,7 @@ func (r *DownloadResource) ArchivePath(downloadDir *paths.Path) (*paths.Path, er
40
archiveFileName := archiveFile.Base()
41
archivePath := staging.Join(archiveFileName).Clean()
42
if archivePath.IsDir() {
43
- return nil, errors.Errorf("invalid filename or exinsting directory: %s", archivePath)
+ return nil, errors.Errorf("archive filename points to an existing directory: %s", archivePath)
44
}
45
return archivePath, nil
46
0 commit comments