Jaromir Wysoglad c336b87342 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
2024-04-12 08:37:49 +02:00
..
2023-08-02 05:11:03 +00:00
2022-11-07 08:21:34 +00:00
2019-02-05 11:21:39 -05:00
2024-03-15 20:15:09 +08:00
2023-10-16 15:04:13 +09:00
2024-03-15 20:15:09 +08:00
2023-02-16 12:01:39 +01:00
lvm
2023-08-24 03:28:31 +00:00
2022-12-16 09:59:11 +01:00
2023-12-12 12:55:30 +00:00
2017-06-20 14:09:30 -04:00
2023-02-16 12:01:39 +01:00
2023-02-16 12:01:39 +01:00
2019-03-29 11:20:19 -07:00