[pacman-dev] [PATCH] repo-add: fix creation of signature symlink

Allan McRae allan at archlinux.org
Mon Aug 15 23:56:46 EDT 2011


When creating a repo outside the current directory, the signature
symlink was not created.

Reported-by: Gaetan Bisson <bisson at archlinux.org>
Signed-off-by: Allan McRae <allan at archlinux.org>
---
 scripts/repo-add.sh.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in
index fd0c814..29b150c 100644
--- a/scripts/repo-add.sh.in
+++ b/scripts/repo-add.sh.in
@@ -661,7 +661,7 @@ if (( success )); then
 	ln -s "$target" "$dblink" 2>/dev/null || \
 		ln "$target" "$dblink" 2>/dev/null || \
 		cp "$REPO_DB_FILE" "$dblink"
-	if [[ -f "$target.sig" ]]; then
+	if [[ -f "$REPO_DB_FILE.sig" ]]; then
 		ln -s "$target.sig" "$dblink.sig" 2>/dev/null || \
 			ln "$target.sig" "$dblink.sig" 2>/dev/null || \
 			cp "$REPO_DB_FILE.sig" "$dblink.sig"
-- 
1.7.6



More information about the pacman-dev mailing list