From d0cbe1615281a935d492cc1fd7542198f22f71ad Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 2 Sep 2013 19:19:12 -0400 Subject: lsinitcpio: return success based on echo, not hexdump The impetus for doing this was a bug in util-linux's hexdump which never saw a release. For uniformity, simply echo an empty line here. Signed-off-by: Dave Reisner --- lsinitcpio | 1 + 1 file changed, 1 insertion(+) diff --git a/lsinitcpio b/lsinitcpio index 5f19326..0c9d05d 100755 --- a/lsinitcpio +++ b/lsinitcpio @@ -72,6 +72,7 @@ detect_filetype() { case $(hexdump -n 6 -e '"%c"' "$1") in '070701') # no compression + echo return ;; $'\xfd7zXZ') -- cgit v1.2.3-24-g4f1b