From 7893287606b1019331f700e9a00e7bc5a6b047c0 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 30 Oct 2009 02:41:52 +0100 Subject: [PATCH] repod: Fix .nofetch test --- daemons/repod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/repod.sh b/daemons/repod.sh index a6b6fb2..96d2c64 100755 --- a/daemons/repod.sh +++ b/daemons/repod.sh @@ -33,7 +33,7 @@ trap "rm /tmp/repod.lock" SIGINT SIGTERM EXIT check_one_proj() { proj="$1" - if [ ! -e "$proj.git"/.nofetch ]; then + if [ ! -e "$cfg_reporoot/$proj.git"/.nofetch ]; then "$cfg_basedir"/daemons/update.sh "$proj" fi if [ -n "$show_progress" ]; then -- 2.11.4.GIT