Draft: Accept multiple archives from make-archive scripts
This MUTs
branch is originally from https://git.symas.net/symas-public/apkg/-/tree/MUTs
as mentioned in #101 (comment 295774)
Fixes: #101
Merge request reports
Activity
changed milestone to %v0.5
added enhancement label
mentioned in issue #101
61 61 62 62 log.info("running make_archive_script: %s", script) 63 63 out = run(script, quiet=True) 64 # last script stdout line is expected to be path to resulting archive 65 _, _, last_line = out.rpartition('\n') 66 in_archive_path = Path(last_line) 67 if not in_archive_path.exists(): 68 msg = ("make_archive_script finished successfully but the archive\n" 69 "(indicated by last script stdout line) doesn't exist:\n\n" 70 "%s" % in_archive_path) 71 raise ex.UnexpectedCommandOutput(msg=msg) 72 log.info("archive created: %s", in_archive_path) 64 # first script stdout line is expected to be path to resulting archive 65 lines = out.split('\n') 66 in_archive_path = Path(lines[0]) changed milestone to %v0.6
added 36 commits
-
e3a58d00...ad0bbb93 - 33 commits from branch
master
- 6d9321e0 - Silence make-package scripts
- 00bb06d3 - Accept multiple archives from make-archive script
- 7240e7dc - Always include orig sources
Toggle commit list-
e3a58d00...ad0bbb93 - 33 commits from branch
The proposal has now been updated and now lives in branch MUT_proposed in the same repo: https://git.symas.net/symas-public/apkg/-/tree/MUT_proposed
mentioned in merge request !175
As I can't change source branch in the MR, I've opened a new one for
MUT_proposed
branch: !175Let's continue there, I'm closing this.
Edited by Jakub Ružička