diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-09-19 23:55:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-09-19 23:55:54 +0200 |
| commit | 96cbaf54132f8b3c3ebd4b02e44e72034c56965c (patch) | |
| tree | bac62eae03d55e16fdfa1cb78b54d95dab6d04db | |
| parent | 0b1c33732bcc66d00d4486c2ccf7f8111a076ae2 (diff) | |
I don't think we need to clean up target if we don't even create it successfully.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1241,8 +1241,8 @@ def main(): if args.target is None: raise Error('you must specify -t or --target') + target = target_factory(args) try: - target = target_factory(args) target.build(args.project, args.checkout, get_command_line_options(args)) finally: if not args.keep: |
