Merge pull request #4468 from Ma27/installer-no-progress-opt

scripts/install-nix-from-closure: only show progress if a terminal is used
This commit is contained in:
Eelco Dolstra 2021-01-25 12:22:33 +01:00 committed by GitHub
commit 29edbfe2d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,9 +166,15 @@ fi
mkdir -p $dest/store
printf "copying Nix to %s..." "${dest}/store" >&2
# Insert a newline if no progress is shown.
if [ ! -t 0 ]; then
echo ""
fi
for i in $(cd "$self/store" >/dev/null && echo ./*); do
printf "." >&2
if [ -t 0 ]; then
printf "." >&2
fi
i_tmp="$dest/store/$i.$$"
if [ -e "$i_tmp" ]; then
rm -rf "$i_tmp"