commit | 8be702939c3c057e5d76471d7c6f47da1dedb649 | [log] [tgz] |
---|---|---|
author | Andrew Jeffery <andrew@aj.id.au> | Fri Nov 01 08:56:49 2019 +1030 |
committer | Andrew Geissler <geissonator@yahoo.com> | Thu Nov 21 22:44:18 2019 +0000 |
tree | 2938c08dc0cf49cf5e06d1e273dcbacc203419be | |
parent | 38605ee2b3b115230ec8c440541ab3b7c6180261 [diff] |
obmcutil: Silence kill error message by quoting test variable Similar to the last fix, avoid an always-true test result with proper variable quoting. Change-Id: I90d79efcc92e61bf5d4989c5675de8dc1928aaff Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/obmcutil b/obmcutil index 703c129..24bce75 100755 --- a/obmcutil +++ b/obmcutil
@@ -100,7 +100,7 @@ "within timeout period (${timeout}s)" fi - if [ -n $verbose_child ]; then + if [ -n "$verbose_child" ]; then kill $verbose_child fi }