From e8ad1d10f34490580497683ab59b71fe9ca43f19 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Fri, 19 Jul 2013 14:42:46 +0200 Subject: [PATCH] bin/check.sh: fix locations. Use proper ENV var --- bin/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check.sh b/bin/check.sh index fa254a4b..ffe71d95 100755 --- a/bin/check.sh +++ b/bin/check.sh @@ -81,7 +81,7 @@ function delete_voip function delete_locations { - for sub in $(cat scenarios/callee.csv | grep test | cut -d\; -f1 | xargs); do + for sub in $(cat ${SCEN_DIR}/callee.csv | grep test | cut -d\; -f1 | xargs); do ngcp-kamctl proxy ul rm $sub@${DOMAIN} done }