Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 7545eae

Browse files
author
Ashley Chaloner
committed
Change "-var x=y" to "-var" "x=y"
1 parent 2e71d83 commit 7545eae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ def _append_base_arguments(self):
182182
elif self.only:
183183
self._add_opt('-only={0}'.format(self._join_comma(self.only)))
184184
for var, value in self.vars.items():
185-
self._add_opt("-var '{0}={1}'".format(var, value))
185+
self._add_opt("-var")
186+
self._add_opt("{0}={1}".format(var, value))
186187
if self.var_file:
187188
self._add_opt('-var-file={0}'.format(self.var_file))
188189

0 commit comments

Comments
 (0)