Skip to content
Snippets Groups Projects
Commit f7f1c7ae authored by Mike Marchetti's avatar Mike Marchetti
Browse files

skip -b <branch> option from installer


Change-Id: Iba37058a0995660742b7146af3bec69339911382
Signed-off-by: default avatarMike Marchetti <mmarchetti@sandvine.com>
parent d1e08b9b
No related branches found
Tags v3.0.0rc
No related merge requests found
......@@ -21,7 +21,7 @@ REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg"
REPOSITORY="stable"
REPOSITORY_BASE="http://osm-download.etsi.org/repository/osm/debian"
while getopts ":r:k:u:R:" o; do
while getopts ":r:k:u:R:b:" o; do
case "${o}" in
r)
REPOSITORY=${OPTARG}
......@@ -35,10 +35,14 @@ while getopts ":r:k:u:R:" o; do
u)
REPOSITORY_BASE=${OPTARG}
;;
b)
## ignore branch option
;;
esac
done
key_location=$REPOSITORY_BASE/$RELEASE/$REPOSITORY_KEY
echo $key_location
curl $key_location | apt-key add -
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment