Don't assume /bin/sh supports echo -e

backends/test/helpers/search-name.sh is uses echo -e to return tab-separated
values to the caller, but declares itself #!/bin/sh. If /bin/sh is dash
then the caller receives "-e package\t...", which is invalid.
This commit is contained in:
James Westby 2008-09-12 14:59:31 +01:00
parent 163547429e
commit 8c5504bffa

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# #
# Copyright (C) 2007 Richard Hughes <richard@hughsie.com> # Copyright (C) 2007 Richard Hughes <richard@hughsie.com>
# #