Skip to content

Commit

Permalink
Merge pull request #91 from Parallels/send-key-event-fix-for-lesser-v…
Browse files Browse the repository at this point in the history
…ersions

fix for send-key-event not found
  • Loading branch information
sai-kumar-peddireddy authored Aug 9, 2023
2 parents 8558b21 + 98a721b commit 65c8b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/parallels/common/driver_9.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func (d *Parallels9Driver) SendKeyScanCodes(vmName string, codes ...string) erro
prlctlCurrVersion, _ := version.NewVersion(prlctlCurrVersionStr)
v2, _ := version.NewVersion("19.0.0")

if verErr != nil && prlctlCurrVersion.LessThan(v2) {
if prlctlCurrVersion.LessThan(v2) {

f, err := tmp.File("prltype")
if err != nil {
Expand Down

0 comments on commit 65c8b7f

Please sign in to comment.