summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-10 14:56:02 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-10 14:56:02 (EDT)
commitd65ef67db0decde739e8a7a658a402814ede9acc (patch)
treef4283abc5e74bb6db10aba9ef44cb1716887a1c6
parenta41a543bbffefb8d2b4ad29bd9a4cbe82560c3db (diff)
feed_sign(): Fix path to key
-rw-r--r--src/index.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.sh b/src/index.sh
index ffe02b8..bd27f79 100644
--- a/src/index.sh
+++ b/src/index.sh
@@ -36,7 +36,7 @@ feed_sign()
usign="${USIGN}"
fi
- "${usign}" -S -m "${feed_idx}" -s "${conf_key}"
+ "${usign}" -S -m "${feed_idx}" -s "${base_dir}/${conf_key}"
}
feed_add_package()