guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: import: github: Add .love extension.


From: Efraim Flashner
Subject: 02/03: import: github: Add .love extension.
Date: Mon, 10 Oct 2016 08:58:55 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 523b77faef0caa60d13ba2a83a9a0ca65ef8833c
Author: Efraim Flashner <address@hidden>
Date:   Mon Oct 10 11:52:03 2016 +0300

    import: github: Add .love extension.
    
    * guix/import/github.scm (find-extension): Add '.love' extension to the
    list of extensions checked.
---
 guix/import/github.scm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/github.scm b/guix/import/github.scm
index 9ba9a10..0843dde 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -44,7 +44,7 @@ failure."
   "Return the extension of the archive e.g. '.tar.gz' given a URL, or
 false if none is recognized"
   (find (lambda (x) (string-suffix? x url))
-        (list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar" ".tgz")))
+        (list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar" ".tgz" ".love")))
 
 (define (updated-github-url old-package new-version)
   ;; Return a url for the OLD-PACKAGE with NEW-VERSION.  If no source url in



reply via email to

[Prev in Thread] Current Thread [Next in Thread]