diff --git a/fuel_plugin_builder/actions/build.py b/fuel_plugin_builder/actions/build.py index 293d582..1c29744 100644 --- a/fuel_plugin_builder/actions/build.py +++ b/fuel_plugin_builder/actions/build.py @@ -102,7 +102,7 @@ class BaseBuildPlugin(BaseAction): def build_ubuntu_repos(cls, releases_paths): for repo_path in releases_paths: utils.exec_piped_cmds( - ['dpkg-scanpackages .', 'gzip -c9 > Packages.gz'], + ['dpkg-scanpackages -m .', 'gzip -c9 > Packages.gz'], cwd=repo_path) @classmethod @@ -226,7 +226,7 @@ class BuildPluginV2(BaseBuildPlugin): def build_ubuntu_repos(self, releases_paths): for repo_path in releases_paths: utils.exec_piped_cmds( - ['dpkg-scanpackages .', 'gzip -c9 > Packages.gz'], + ['dpkg-scanpackages -m .', 'gzip -c9 > Packages.gz'], cwd=repo_path) release_path = join_path(repo_path, 'Release') utils.render_to_file( diff --git a/fuel_plugin_builder/tests/test_build.py b/fuel_plugin_builder/tests/test_build.py index fbced38..57ec7fa 100644 --- a/fuel_plugin_builder/tests/test_build.py +++ b/fuel_plugin_builder/tests/test_build.py @@ -106,7 +106,7 @@ class BaseBuild(BaseTestCase): path = '/repo/path' self.builder.build_ubuntu_repos([path]) utils_mock.exec_piped_cmds.assert_called_once_with( - ['dpkg-scanpackages .', 'gzip -c9 > Packages.gz'], + ['dpkg-scanpackages -m .', 'gzip -c9 > Packages.gz'], cwd=path) @mock.patch('fuel_plugin_builder.actions.build.utils') @@ -280,7 +280,7 @@ class TestBaseBuildV2(BaseBuild): path = '/repo/path' self.builder.build_ubuntu_repos([path]) utils_mock.exec_piped_cmds.assert_called_once_with( - ['dpkg-scanpackages .', 'gzip -c9 > Packages.gz'], + ['dpkg-scanpackages -m .', 'gzip -c9 > Packages.gz'], cwd=path) release_src = os.path.abspath(join_path( os.path.dirname(__file__), '..',