From 21029f957d29e9ca4af0d64d101cc70e7038b064 Mon Sep 17 00:00:00 2001 From: Kyler Clay Date: Sun, 29 Sep 2024 19:20:21 -0400 Subject: [PATCH] Commit for generation 142 --- glasshouse-desktop/modules/zshell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glasshouse-desktop/modules/zshell.nix b/glasshouse-desktop/modules/zshell.nix index 82d6568..13dc666 100644 --- a/glasshouse-desktop/modules/zshell.nix +++ b/glasshouse-desktop/modules/zshell.nix @@ -160,13 +160,13 @@ safe_rm() { # If there are many files, or the size is big, warn the user if [ "$files" -gt 20 ]; then - echo "There's a lot of stuff in here ($files files) in '$dir'." + echo "There's a lot of stuff in '$dir' ($files files) ." check=true fi if [ "$size" -gt 1024 ]; then size_in_gb=$(echo "scale=2; $size / 1024" | bc -l) - echo "This $is_file_or_dir is kind of big ($size_in_gb GB) in '$dir'." + echo "This $is_file_or_dir ('$dir') is kind of big ($size_in_gb GB)." check=true fi