From da82ff3fd687e4b2c79652a09f382a4ecde5175d Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Wed, 12 Aug 2015 10:28:06 +0200 Subject: [PATCH] Fix interpolation of {{.Flavor}} in parallels_tools_guest_path. (2) Actually fix the error... Fixes [GH-2543] --- builder/parallels/iso/builder.go | 2 +- builder/parallels/pvm/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/parallels/iso/builder.go b/builder/parallels/iso/builder.go index 4a75b0b47..6b731544d 100644 --- a/builder/parallels/iso/builder.go +++ b/builder/parallels/iso/builder.go @@ -64,7 +64,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) { Exclude: []string{ "boot_command", "prlctl", - "parallel_tools_guest_path", + "parallels_tools_guest_path", }, }, }, raws...) diff --git a/builder/parallels/pvm/config.go b/builder/parallels/pvm/config.go index f03584bf2..89c3ec1f9 100644 --- a/builder/parallels/pvm/config.go +++ b/builder/parallels/pvm/config.go @@ -41,7 +41,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { Exclude: []string{ "boot_command", "prlctl", - "parallel_tools_guest_path", + "parallels_tools_guest_path", }, }, }, raws...)