diff options
Diffstat (limited to 'install/vscode.fish')
| -rwxr-xr-x | install/vscode.fish | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/vscode.fish b/install/vscode.fish index 1f4b6b1..56ddd39 100755 --- a/install/vscode.fish +++ b/install/vscode.fish @@ -3,6 +3,7 @@ . (dirname (status filename))/util.fish function confirm-copy -a from to + test -L $to -a (realpath $to) = (realpath $from) && return 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 |