From fa262255faa74940f0ad35593fded9b594b4b2bd Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Mon, 10 Jun 2019 17:53:30 +0700 Subject: [PATCH] pkg_strip: continue the loop if file is not a bin/lib --- puke | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/puke b/puke index 6b67d3b6..016de112 100755 --- a/puke +++ b/puke @@ -92,8 +92,9 @@ pkg_strip() { ;; application/x-archive*) strip_opts="--strip-debug" ;; application/x-executable*) strip_opts="--strip-all" ;; + *) continue ;; esac - strip "$strip_opts" "$binary" 2>/dev/null + strip "$strip_opts" "$binary" done }