Fix tools/configure_for_func_testing.sh
Remove an erroneous "source", we test for existing of a file, the source is misplaced. The source results in errors executing like: /home/zuul/src/opendev.org/openstack/neutron/tools/configure_for_func_testing.sh: line 81: [: source: binary operator expected Change-Id: Iea8121eb4b25e66e2527feb5bf3f8f351114c721
This commit is contained in:
parent
86feb7916b
commit
8a28340628
@ -78,7 +78,7 @@ function _init {
|
||||
FILES=$DEVSTACK_PATH/files
|
||||
TOP_DIR=$DEVSTACK_PATH
|
||||
|
||||
if [ -f source $DEVSTACK_PATH/local.conf ]; then
|
||||
if [ -f $DEVSTACK_PATH/local.conf ]; then
|
||||
source $DEVSTACK_PATH/local.conf 2> /dev/null
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user