kiss: ensure return on error

This commit is contained in:
Dylan Araps 2021-07-14 07:28:01 +03:00
parent 633d80067f
commit c2e5a03af8
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 2 additions and 1 deletions

3
kiss
View File

@ -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
}