repo-install-test: fix check for Release.key

$release_key is not defined, replace it with the path.

Change-Id: I6bd13cc6149db1f2ba25ef1ee343115d3c53cf3b
This commit is contained in:
Oliver Smith 2022-12-08 09:35:37 +01:00 committed by osmith
parent aae43b731f
commit ed2d877bc6
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ configure_osmocom_repo_debian() {
echo "Configuring Osmocom repository"
# Add repository key
if ! [ -e "$release_key" ]; then
if ! [ -e /tmp/Release.key ]; then
wget -O /tmp/Release.key "https://obs.osmocom.org/projects/$proj/public_key"
fi