aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-04 09:39:20 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-04 09:39:20 +0000
commit82a6be87138878ba411e453ee48071ed8b2b2c07 (patch)
treef0dc5fc742f525bbb0437749a73b655e452e8d07 /kiss
parent87f9cc53f04f25a296a76a6ea403feb320951115 (diff)
downloadcpt-82a6be87138878ba411e453ee48071ed8b2b2c07.tar.gz
kiss: mask errors
FossilOrigin-Name: 85e7700abad788c992d6021897a49f05a4f31e59e711c31cd481373cf115fffc
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss8
1 files changed, 4 insertions, 4 deletions
diff --git a/kiss b/kiss
index e73e648..3aff6d9 100755
--- a/kiss
+++ b/kiss
@@ -726,13 +726,13 @@ pkg_install() {
*bin/rm|*bin/busybox|*bin/rsync|/etc/*) ;;
*) rm -f "$KISS_ROOT/$file" ;;
esac
- done
+ done ||:
}
# Install the package again to fix any non-leftover files being
# removed above.
- rsync_pkg
- rsync_pkg
+ rsync_pkg ||:
+ rsync_pkg ||:
# Reset 'trap' to its original value. Installation is done so
# we no longer need to block 'Ctrl+C'.
@@ -1002,7 +1002,7 @@ args() {
# Print version and exit.
v|ve|ver|vers|versi|versio|version)
- log "kiss 0.5.11"
+ log "kiss 0.5.12"
;;
# Print usage and exit.