2015-06-10 14:53:31 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-10-12 13:42:22 +00:00
|
|
|
set -e
|
|
|
|
|
2017-08-10 07:27:47 +00:00
|
|
|
HERE=$(realpath "$(dirname "$0")")
|
2017-07-27 07:34:39 +00:00
|
|
|
|
|
|
|
PYTHONPATH=$HERE/../:$PYTHONPATH
|
|
|
|
PATH=$HERE/../bin:$PATH
|
2016-10-12 13:42:22 +00:00
|
|
|
export PYTHONPATH PATH
|
2015-06-10 14:53:31 +00:00
|
|
|
|
|
|
|
mkdir -p _composes
|
|
|
|
|
|
|
|
pungi-koji \
|
2017-07-27 07:34:39 +00:00
|
|
|
--target-dir="$HERE/_composes" \
|
|
|
|
--old-composes="$HERE/_composes" \
|
|
|
|
--config="$HERE/data/dummy-pungi.conf" \
|
2015-11-26 07:45:33 +00:00
|
|
|
--test "$@"
|
2016-10-12 13:42:22 +00:00
|
|
|
|
|
|
|
# Run this to create unified ISOs for the just created compose
|
|
|
|
#pungi-create-unified-isos _composes/latest-DP-1/
|