From c2e5a03af8194e5bcbe7005675c6ccdb9494e264 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 14 Jul 2021 07:28:01 +0300 Subject: [PATCH] kiss: ensure return on error --- kiss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kiss b/kiss index 060ce2d..2da238d 100755 --- a/kiss +++ b/kiss @@ -1105,7 +1105,8 @@ pkg_install_files() { # destination. The running processes will either get # the old file or the new one. mv -f "$__tmp" "$_file" - } + + } || return 1 esac done }