bd8d814230
The messaging is not really part of compose settings. It is an infrastructure part. As such, it should really be set up as part of pungi invocation, not compose configuration. The documentation is updated to reflect this. Some updates to the documentation are done as well: listing messages about ISOs and minor formatting updates. The test_compose.sh script can now accept additional command line options and pass them on to pungi-koji to simplify testing. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
13 lines
203 B
Bash
Executable File
13 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PYTHONPATH=$(pwd)/../
|
|
export PATH=$(pwd)/../bin:$PATH
|
|
|
|
mkdir -p _composes
|
|
|
|
pungi-koji \
|
|
--target-dir=_composes \
|
|
--old-composes=_composes \
|
|
--config=data/dummy-pungi.conf \
|
|
--test "$@"
|