summaryrefslogtreecommitdiffstats
path: root/build/variables.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-12-11 21:15:04 -0500
committerTim Rozet <trozet@redhat.com>2016-12-11 21:15:04 -0500
commit641f66d2790dc4155e758b17f311713fec01ea87 (patch)
treec8379b102f92b285b153bce9009ec66231bad399 /build/variables.sh
parent17ad36c610547f09d1a090df3c9a5150a092eeca (diff)
Fixes broken git tag variables
Change-Id: Ie935dd6ddad5866e208a470765030e6d1246a0e9 Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'build/variables.sh')
-rw-r--r--build/variables.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/variables.sh b/build/variables.sh
index c9ce80f6..d9f3471e 100644
--- a/build/variables.sh
+++ b/build/variables.sh
@@ -34,20 +34,20 @@ dpdk_rpms=(
tacker_repo="http://github.com/openstack/tacker"
tacker_branch="stable/newton"
-tacker_commit=$(git ls-remote ${tacker_repo} ${tacker_branch} | awk '{print substr($$1,1,7)}')
+tacker_commit=$(git ls-remote ${tacker_repo} ${tacker_branch} | awk '{print substr($1,1,7)}')
tacker_pkg=openstack-tacker-2016.2-1.git${tacker_commit}.noarch.rpm
tackerclient_repo="http://github.com/openstack/python-tackerclient"
tackerclient_branch="stable/newton"
-tackerclient_commit=$(git ls-remote ${tackerclient_repo} ${tackerclient_branch} | awk '{print substr($$1,1,7)}')
+tackerclient_commit=$(git ls-remote ${tackerclient_repo} ${tackerclient_branch} | awk '{print substr($1,1,7)}')
tackerclient_pkg=python-tackerclient-2016.2-1.git${tackerclient_commit}.noarch.rpm
congress_repo="http://github.com/openstack/congress"
congress_branch="stable/mitaka"
-congress_commit=$(git ls-remote ${congress_repo} ${congress_branch} | awk '{print substr($$1,1,7)}')
+congress_commit=$(git ls-remote ${congress_repo} ${congress_branch} | awk '{print substr($1,1,7)}')
congress_pkg=openstack-congress-2016.1-1.git${congress_commit}$(rpm -E %dist).noarch.rpm
netvpp_repo="https://github.com/openstack/networking-vpp"
netvpp_branch="master"
-netvpp_commit=$(git ls-remote ${netvpp_repo} ${netvpp_branch} | awk '{print substr($$1,1,7)}')
+netvpp_commit=$(git ls-remote ${netvpp_repo} ${netvpp_branch} | awk '{print substr($1,1,7)}')
netvpp_pkg=networking-vpp-0.0.1-1.git${NETVPP_COMMIT}$(rpm -E %dist).noarch.rpm