xci: xci-deploy.sh: Extend regexp when collecting env variables 71/44071/1
authorMarkos Chandras <mchandras@suse.de>
Tue, 3 Oct 2017 12:26:36 +0000 (13:26 +0100)
committerMarkos Chandras <mchandras@suse.de>
Tue, 3 Oct 2017 12:26:36 +0000 (13:26 +0100)
Not all variables start with XCI, OPNFV or OPENSTACK so extend the
regexp to look for more variables.

Change-Id: If3693d65eec697f6c81c608da3be5799333c28d7
Signed-off-by: Markos Chandras <mchandras@suse.de>
xci/xci-deploy.sh

index 52dce4b..c798135 100755 (executable)
@@ -22,7 +22,7 @@ submit_bug_report() {
     echo "openstack/openstack-ansible version: $OPENSTACK_OSA_VERSION"
     echo "xci flavor: $XCI_FLAVOR"
     echo "Environment variables:"
-    env | grep --color=never '^\(OPNFV\|XCI\|OPENSTACK\)_'
+    env | grep --color=never '\(OPNFV\|XCI\|OPENSTACK\)'
     echo "-------------------------------------------------------------------------"
 }