Also allow passing the repodata dir to repo2solv.sh. BASE-SuSE-Code-12_1-Branch
authorMichael Andres <ma@suse.de>
Thu, 15 Dec 2011 11:42:52 +0000 (12:42 +0100)
committerMichael Andres <ma@suse.de>
Thu, 15 Dec 2011 11:44:32 +0000 (12:44 +0100)
tools/repo2solv.sh

index 518f700..db1052c 100755 (executable)
@@ -98,7 +98,7 @@ cd "$dir" || exit 1
 
 if test -z "$repotype" ; then
   # autodetect repository type
-  if test -d repodata ; then
+  if test -d repodata -o -f repomd.xml; then
     repotype=rpmmd
   elif test_susetags ; then
     repotype=susetags
@@ -108,7 +108,9 @@ if test -z "$repotype" ; then
 fi
 
 if test "$repotype" = rpmmd ; then
-  cd repodata || exit 2
+  test -d repodata && {
+    cd repodata || exit 2
+  }
 
   primfile=
   primxml=`repomd_findfile primary primary.xml`