From c0fb90c384aa46e347eed95f49759b9daf58c849 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 11 Jun 2019 12:11:14 +0300 Subject: [PATCH] general: Fix white-space. --- puke | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/puke b/puke index dd3ec729..d4f39b61 100755 --- a/puke +++ b/puke @@ -91,10 +91,13 @@ pkg_strip() { application/x-sharedlib*|application/x-pie-executable*) strip_opts=--strip-unneeded ;; - application/x-archive*) strip_opts=--strip-debug ;; + + application/x-archive*) strip_opts=--strip-debug ;; application/x-executable*) strip_opts=--strip-all ;; + *) continue ;; esac + strip "$strip_opts" "$binary" done }