launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #30195
[Merge] ~ines-almeida/txpkgupload:update-build-tarball-command into txpkgupload:master
Ines Almeida has proposed merging ~ines-almeida/txpkgupload:update-build-tarball-command into txpkgupload:master.
Commit message:
Fix build-tarball command formatting issue
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~ines-almeida/txpkgupload/+git/txpkgupload/+merge/446198
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~ines-almeida/txpkgupload:update-build-tarball-command into txpkgupload:master.
diff --git a/Makefile b/Makefile
index b356b8f..25651d5 100644
--- a/Makefile
+++ b/Makefile
@@ -109,10 +109,10 @@ build-tarball:
$(PIP) wheel -f $(DEPENDENCY_DIR) --no-index -w $(WHEELS) \
-r bootstrap-requirements.txt -r requirements.txt
mkdir -p $(TARBALL_BUILD_DIR)
- (
- git ls-files | sed 's,^,./,'
- echo ./version-info.py
- find $(WHEELS) -name \*.whl -print
+ ( \
+ git ls-files | sed 's,^,./,'; \
+ echo ./version-info.py; \
+ find $(WHEELS) -name \*.whl -print; \
) | sort >"$(TARBALL_BUILD_DIR)/.files"
# Create the tarball.