Update git submodules

* Update devstack from branch 'master'
  to e2aeab1bc1deae8d147508ae0d1f752588d03fd3
  - Merge "Fix neutron empty string check"
  - Fix neutron empty string check
    
    The variable should be in quotes for the check to work
    
    Testing the behavior in bash:
    current behavior:
    $ config_file=""
    $ if [ -n ${config_file} ]; then echo a; fi
    a
    
    $ config_file="abc"
    $ if [ -n ${config_file} ]; then echo a; fi
    a
    
    behavior with quotes:
    $ config_file=""
    $ if [ -n "$config_file" ]; then echo a; fi
    
    $ config_file="abc"
    $ if [ -n "$config_file" ]; then echo a; fi
    a
    
    Change-Id: Iba956d9d4f43b925848174a632aabe58999be74b
This commit is contained in:
Zuul 2024-04-16 21:47:40 +00:00 committed by Gerrit Code Review
parent f85f49f5b5
commit 0b1fe5cc45
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit 1abf3598fa6e6587354d973c59306dbe6a130bd7
Subproject commit e2aeab1bc1deae8d147508ae0d1f752588d03fd3