The result is an almost empty collection config file with no options selected, like this: ======================================= PTXCONF__collectionconfig_MAGIC__=y PTXCONF_COLLECTION_ALL=y =======================================
Signed-off-by: Remy Bohmer <[email protected]> --- bin/ptxdist | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/bin/ptxdist b/bin/ptxdist index 466c712..a1e4ff9 100755 --- a/bin/ptxdist +++ b/bin/ptxdist @@ -1399,6 +1399,10 @@ do_config() "collection") local file_dotconfig="${3}" + # ptxdist -q allyesconfig collection gives an empty collection + # ignore the '-q' option to get a valid collection. + unset PTXDIST_QUIET + if [ -n "${file_dotconfig}" ]; then file_dotconfig="$(ptxd_abspath "${file_dotconfig}")" || exit 1 else -- 1.7.0.4 -- ptxdist mailing list [email protected]
