From 0bfcbbf0dc83f87ab21d7d3b4a5980eaa51f0018 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 29 Mar 2025 16:40:54 +1100 Subject: install: add qt --- install/util.fish | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'install/util.fish') diff --git a/install/util.fish b/install/util.fish index 1d1a6ec..e5dd7f8 100644 --- a/install/util.fish +++ b/install/util.fish @@ -116,3 +116,13 @@ function install-link -a from to ln -s $from $to end end + +function confirm-copy -a from to + test -L $to -a "$(realpath $to 2> /dev/null)" = (realpath $from) && return # Return if symlink + cmp $from $to &> /dev/null && return # Return if files are the same + if test -e $to + read -l -p "input '$(realpath $to) already exists. Overwrite? [y/N] ' -n" confirm + test "$confirm" = 'y' -o "$confirm" = 'Y' && log 'Continuing.' || return + end + cp $from $to +end -- cgit v1.2.3-freya