plugin-getter: fix typo in API mismatch error

This commit is contained in:
Lucas Bajolet 2024-02-23 17:15:38 -05:00 committed by Lucas Bajolet
parent 2e2038bc30
commit 7113dea5ef

View file

@ -379,7 +379,7 @@ func (binOpts *BinaryInstallationOptions) CheckProtocolVersion(remoteProt string
}
if vMinori > APIVersoinMinori {
return fmt.Errorf("Unsupported remote protocol MINOR version %q. The supported MINOR protocol versions are version %q and bellow."+
return fmt.Errorf("Unsupported remote protocol MINOR version %q. The supported MINOR protocol versions are version %q and below. "+
"Please upgrade Packer or use an older version of the plugin if possible.", vMinor, binOpts.APIVersionMinor)
}