[Groonga-commit] groonga/groonga at 7394c58 [master] packages yum: skip to update CentOS 5

Back to archive index

Kentaro Hayashi null+****@clear*****
Mon Aug 27 11:57:26 JST 2018


Kentaro Hayashi	2018-08-27 11:57:26 +0900 (Mon, 27 Aug 2018)

  Revision: 7394c585c9352e86502f944c707232c8a824a98a
  https://github.com/groonga/groonga/commit/7394c585c9352e86502f944c707232c8a824a98a

  Message:
    packages yum: skip to update CentOS 5

  Modified files:
    packages/yum/update-repository.sh

  Modified: packages/yum/update-repository.sh (+8 -1)
===================================================================
--- packages/yum/update-repository.sh    2018-08-27 11:24:36 +0900 (437d62549)
+++ packages/yum/update-repository.sh    2018-08-27 11:57:26 +0900 (195fe2b9f)
@@ -24,7 +24,14 @@ run()
 
 for distribution in ${DISTRIBUTIONS}; do
     for dir in ${DESTINATION}${distribution}/*/*; do
-	test -d $dir &&	run createrepo $dir
+        case $dir in
+            repositories/centos/5*)
+                continue
+                ;;
+            *)
+                test -d $dir &&	run createrepo $dir
+                ;;
+        esac
     done;
 
     run gpg --armor --export ${GPG_UID} > \
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20180827/9b546e56/attachment.htm 



More information about the Groonga-commit mailing list
Back to archive index