aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-01-14 14:14:15 +0100
committerOliver Smith <osmith@sysmocom.de>2021-01-20 14:19:12 +0100
commitfcfec399fb5d966d1981be39e11bd5fea59050d5 (patch)
tree850e1ebdd7d1cfa89002a4622aba796256cb1ba8
parent12e68891258f95c6f9265b57ea69181fe0860b89 (diff)
repo-install-test: put $PROJ in sources.list name
Don't call the file osmocom-latest regardless of the feed name. This becomes important in a future conflict test where we will have two repositories from two feeds configured. Related: OS#4733 Change-Id: I8926443a9ff70f285d9467d39658e64456972b07
-rwxr-xr-xscripts/repo-install-test/run-inside-docker.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/repo-install-test/run-inside-docker.sh b/scripts/repo-install-test/run-inside-docker.sh
index 3c3245d..ee148c8 100755
--- a/scripts/repo-install-test/run-inside-docker.sh
+++ b/scripts/repo-install-test/run-inside-docker.sh
@@ -70,8 +70,7 @@ configure_osmocom_repo_debian() {
local http="http://download.opensuse.org/repositories/$(proj_with_slashes "$PROJ")/Debian_9.0/"
echo "Configuring Osmocom repository"
- echo "deb $http ./" \
- > /etc/apt/sources.list.d/osmocom-latest.list
+ echo "deb $http ./" > "/etc/apt/sources.list.d/$PROJ.list"
apt-get update
}