Do not escape quotes

This commit is contained in:
Sean Malloy 2016-12-29 23:22:34 -06:00
parent 01b5a824f3
commit bd0985cde8
1 changed files with 3 additions and 3 deletions

View File

@ -123,10 +123,10 @@ cd {{.WorkingDir}} && \
{{if ne .PuppetBinDir \"\"}}{{.PuppetBinDir}}{{end}}puppet apply \
--verbose \
--modulepath='{{.ModulePath}}' \
{{if ne .HieraConfigPath \"\"}}--hiera_config='{{.HieraConfigPath}}' {{end}} \
{{if ne .ManifestDir \"\"}}--manifestdir='{{.ManifestDir}}' {{end}} \
{{if ne .HieraConfigPath ""}}--hiera_config='{{.HieraConfigPath}}' {{end}} \
{{if ne .ManifestDir ""}}--manifestdir='{{.ManifestDir}}' {{end}} \
--detailed-exitcodes \
{{if ne .ExtraArguments \"\"}}{{.ExtraArguments}} {{end}} \
{{if ne .ExtraArguments ""}}{{.ExtraArguments}} {{end}} \
{{.ManifestFile}}
```