diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-08 09:06:50 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-08 09:06:50 +0000 |
commit | b110ee4c69abb91d9c6f0dc7ffc9f65a7730f5b2 (patch) | |
tree | e1e2de22464020638e81418511bef2756356615c /kiss | |
parent | 34e4c4a7e799f144efbd2d5283b13722375cee8c (diff) | |
download | cpt-b110ee4c69abb91d9c6f0dc7ffc9f65a7730f5b2.tar.gz |
kiss: fix tar errors
FossilOrigin-Name: 04d7e8085c10cc570462dce0fa024331370b6efe5faceec812bcfc9b8e2ca3b6
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -273,10 +273,8 @@ pkg_strip() { # Suppress errors here as some binaries and libraries may # fail to strip. This is OK. - strip "$strip_opt" "$file" 2>/dev/null & + strip "$strip_opt" "$file" 2>/dev/null ||: done - - wait } pkg_fixdeps() { |