diff --git a/fuel_plugin_builder/actions/build.py b/fuel_plugin_builder/actions/build.py index 99ccc19..3b25578 100644 --- a/fuel_plugin_builder/actions/build.py +++ b/fuel_plugin_builder/actions/build.py @@ -103,7 +103,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 @@ -227,7 +227,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 4686478..50a24b3 100644 --- a/fuel_plugin_builder/tests/test_build.py +++ b/fuel_plugin_builder/tests/test_build.py @@ -102,7 +102,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') @@ -276,7 +276,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__), '..',