aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-09 09:14:33 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2020-02-09 09:14:33 +0000
commit4b365ad1f899df961cca9fed80b682cc4a5c7ece (patch)
treede37f2b785f967be19497e05a1f5197a0fc3c03f
parenteea3941455fc268ca72c2b8ae9b57a11651eb8c5 (diff)
downloadcpt-4b365ad1f899df961cca9fed80b682cc4a5c7ece.tar.gz
kiss: Add option to show diffs on update
FossilOrigin-Name: f27b1c89ae8fca281d3053b3e28abce0f6811885a84e6b81af65a44d668d77ca
-rwxr-xr-xkiss21
1 files changed, 19 insertions, 2 deletions
diff --git a/kiss b/kiss
index 30d158d..0c77e47 100755
--- a/kiss
+++ b/kiss
@@ -1034,6 +1034,11 @@ pkg_updates() {
# shellcheck disable=2046,2086
{ IFS=:; set -- $KISS_PATH; IFS=$old_ifs; }
+ # Where to store repository diffs for the update.
+ # At the same time, create the file so updates requiring root don't
+ # overwrite the user's existing permissions over the log.
+ :> "${log_file:=$log_dir/update-$time-$pid}"
+
# Update each repository in '$KISS_PATH'. It is assumed that
# each repository is 'git' tracked.
for repo; do
@@ -1065,6 +1070,7 @@ pkg_updates() {
if [ -w "$PWD" ] && [ "$(id -u)" != 0 ]; then
git fetch
+ git diff >> "$log_file"
git merge
else
@@ -1078,12 +1084,15 @@ pkg_updates() {
# case that the repository is owned by a 3rd user.
(
user=$(stat -c %U "$PWD")
+ pull="git fetch && git diff >>'$log_file' && git merge"
[ "$user" = root ] ||
log "Dropping permissions to $user for pull"
- as_root git fetch
- as_root git merge
+ case $su in
+ su) as_root "$pull" ;;
+ *) as_root sh -c "$pull" ;;
+ esac
)
fi
}
@@ -1136,6 +1145,14 @@ pkg_updates() {
log "Packages to update: ${outdated% }"
+ # Show a diff of each new change to the repositories.
+ # This spawns the user's set PAGER with a fallback to less.
+ [ -s "$log_file" ] && {
+ log "Saved update log to $log_file"
+
+ [ "$KISS_AUDIT" ] && "${PAGER:-less}" "$log_file"
+ }
+
# Tell 'pkg_build' to always prompt before build.
pkg_update=1