osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/30507 )
Change subject: repo-install-test: fix check for Release.key ......................................................................
repo-install-test: fix check for Release.key
$release_key is not defined, replace it with the path.
Change-Id: I6bd13cc6149db1f2ba25ef1ee343115d3c53cf3b --- M scripts/repo-install-test/run-inside.sh 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/07/30507/1
diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh index 5e6a852..da49f7d 100755 --- a/scripts/repo-install-test/run-inside.sh +++ b/scripts/repo-install-test/run-inside.sh @@ -105,7 +105,7 @@ 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