mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-24 08:48:31 +00:00
Fix call to scan_for_licenses()
The last argument (package name) was missing from the call. Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
This commit is contained in:
@@ -256,7 +256,7 @@ def package(args, url, name, archives, workingdir, infile_dict):
|
||||
except Exception:
|
||||
pass
|
||||
# Start one directory higher so we scan *all* versions for licenses
|
||||
license.scan_for_licenses(os.path.dirname(_dir), conf)
|
||||
license.scan_for_licenses(os.path.dirname(_dir), conf, name)
|
||||
exit(0)
|
||||
|
||||
requirements.scan_for_configure(_dir, content.name, conf)
|
||||
|
||||
Reference in New Issue
Block a user