diff options
author | Michal Nowikowski <godfryd@isc.org> | 2019-09-30 11:13:02 +0200 |
---|---|---|
committer | Michal Nowikowski <godfryd@isc.org> | 2019-09-30 11:13:02 +0200 |
commit | 3d5980d403fa51d12b695916b3b063092eab82f8 (patch) | |
tree | 542391ced1c73f9a7b6c2685ffb1680c284103fb /hammer.py | |
parent | [hammer] added support for building kea on alpine and producing apk packages (diff) | |
download | kea-3d5980d403fa51d12b695916b3b063092eab82f8.tar.xz kea-3d5980d403fa51d12b695916b3b063092eab82f8.zip |
hammer: fixed missing variable repository_url
Diffstat (limited to 'hammer.py')
-rwxr-xr-x | hammer.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1630,7 +1630,7 @@ def _build_rpm(system, revision, features, tarball_path, env, check_times, dry_r def _build_deb(system, revision, features, tarball_path, env, check_times, dry_run, - pkg_version, pkg_isc_version, repo_url): + pkg_version, pkg_isc_version, repository_url, repo_url): if system == 'debian' and revision == '9': # debian 9 does not support apt-installing over https, so install proper transport install_pkgs('apt-transport-https', env=env, check_times=check_times) @@ -1704,7 +1704,7 @@ def _build_native_pkg(system, revision, features, tarball_path, env, check_times elif system in ['ubuntu', 'debian']: _build_deb(system, revision, features, tarball_path, env, check_times, dry_run, - pkg_version, pkg_isc_version, repo_url) + pkg_version, pkg_isc_version, repository_url, repo_url) elif system in ['alpine']: _build_alpine_apk(system, revision, features, tarball_path, env, check_times, dry_run, |