From a0e29cb0ac6fece5484e20f5621b1c8e90446398 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sun, 3 Mar 2013 21:59:32 +0100 Subject: [PATCH] Back to old sorting of versions --- lib/builder-targets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/builder-targets.sh b/lib/builder-targets.sh index 2ff1360..140cb5b 100644 --- a/lib/builder-targets.sh +++ b/lib/builder-targets.sh @@ -338,11 +338,11 @@ EOF local file_list=${OUTPUT_DIR}/product-file-list.txt local file_sort_list=${OUTPUT_DIR}/product-file-sort-list.txt rm -f ${file_list} - for cfg_file in `find ${OPSI_REPOS_BASE_DIR} -name "${PN}-*.cfg" -print ` ; do + for cfg_file in `find ${OPSI_REPOS_BASE_DIR} -name "{PN}-${VERSION}-${CREATOR_TAG}*.cfg" -print ` ; do . ${cfg_file} printf "%08d;$cfg_file\n" $REV_RELEASE >> ${file_list} done - sort -V ${file_list} > ${file_sort_list} + sort -n ${file_list} > ${file_sort_list} # Delete the oldest files log_debug "base list for calculate purge:"