From 5ca5e3ac40bbdab08ce49ea1557bc9b33a9b56d2 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Tue, 16 Jan 2018 17:04:55 +0100
Subject: [PATCH] urls do not exist anymore

---
 gitlab/functions.sh | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gitlab/functions.sh b/gitlab/functions.sh
index a62de97..1e1a84a 100644
--- a/gitlab/functions.sh
+++ b/gitlab/functions.sh
@@ -269,14 +269,11 @@ fi
 # $2: Path to the extra cache to be merged into main cache
 merge_conda_cache() {
   if [ -e ${1} ]; then
-    _cached_urls="${2}/urls"
-    _urls="${1}/urls"
     _cached_urlstxt="${2}/urls.txt"
     _urlstxt="${1}/urls.txt"
     if [ -e ${2} ]; then
       log_info "Merging urls.txt and packages with cached files..."
       mv ${2}/*.tar.bz2 ${1}/
-      cat ${_urls} ${_cached_urls} | sort | uniq > ${_urls}
       cat ${_urlstxt} ${_cached_urlstxt} | sort | uniq > ${_urlstxt}
     fi
   fi
-- 
GitLab