diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2021-08-28 01:41:52 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-08-28 01:41:52 +0200 |
commit | 6697bcc5ad7c00bfa6e42229478f5fafda461682 (patch) | |
tree | 8797d8f9250ed2d368e4c894a2e216ee491f089e | |
parent | 021ed3e0ee22f136f1a94185c3a92d72a0fe01ca (diff) | |
download | mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar.gz mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar.bz2 mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar.lz mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar.xz mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.tar.zst mbuto-6697bcc5ad7c00bfa6e42229478f5fafda461682.zip |
mbuto: Fix typo in strip command failure handling
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rwxr-xr-x | mbuto | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ strip_all() { for __f in $("${FIND}" "${wd}"); do case $("${FILE}" -bi "${__f}") in "application/x-sharedlib;"*|"application/x-executable;"*) - "${STRIP}" -s "${__f}" -R .comment 2>/dev/null || :: + "${STRIP}" -s "${__f}" -R .comment 2>/dev/null || : ;; *) ;; |