From 2e9a698a0efdfe179cea557d7a204cdfaaca1b43 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 5 Mar 2018 18:53:28 +0200 Subject: Adjust to renamed repository manifest files --- rep-test | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rep-test') diff --git a/rep-test b/rep-test index 2e45840..09541b6 100755 --- a/rep-test +++ b/rep-test @@ -5,9 +5,9 @@ # Usage: update [options] # # First, the script determines the list of repositories/sections. If -# contains the 'repositories' file, then it is the only repository to be -# tested. Otherwise, every first-level subdirectory of that doesn't -# start with '.' and contains the 'repositories' file is to be tested. +# contains the repositories.manifest file, then it is the only repository to +# be tested. Otherwise, every first-level subdirectory of that doesn't +# start with '.' and contains the repositories.manifest file is to be tested. # # Then, it makes sure that every package in every repository can be built # in a clean configuration. @@ -126,7 +126,7 @@ function check_new () # # rep= -if [ -f "$dir/repositories" ]; then +if [ -f "$dir/repositories.manifest" ]; then rep=$dir else sub=`find $dir -mindepth 1 -maxdepth 1 -type d -name '[^.]*'` @@ -139,10 +139,10 @@ else info "skipping excluded $d/" continue fi - if [ -f "$d/repositories" ]; then + if [ -f "$d/repositories.manifest" ]; then rep+=" $d" else - info "no 'repositories' file in $d/, skipping" + info "no repositories.manifest file in $d/, skipping" fi done -- cgit v1.1