You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
p = packer.Packer(packerfile, exc=exc, only=only, vars=vars,
41
-
vars_file=vars_file, exec_path=packer_exec_path)
41
+
var_file=var_file, exec_path=packer_exec_path)
42
42
p.build(parallel=True, debug=False, force=False)
43
43
```
44
44
@@ -171,4 +171,4 @@ The [sh](http://amoffat.github.io/sh/) Python module is used to execute Packer.
171
171
As such, return values from all functional methods (`validate`, `build`, etc..) other than the `version` method
172
172
will return an `sh` execution object. This is meant for you to be able to read stdout, stderr, exit codes and more after executing the commands. With the progression of `python-packer` less abstract objects will return and more concise return values will be provided.
173
173
174
-
Additionally, to verify that all errors return with as much info as possible, error handling is done gently. Most errors will raise an `sh` exception so that you're able to interact with them. Again, as this module progresses, these exceptions will be handled properly.
174
+
Additionally, to verify that all errors return with as much info as possible, error handling is done gently. Most errors will raise an `sh` exception so that you're able to interact with them. Again, as this module progresses, these exceptions will be handled properly.
0 commit comments