From 9d29867579ba8814373a21dd7d2609e8c702bac9 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 1 Nov 2023 19:19:02 +0300 Subject: [PATCH] Fix capitalization in rebuild.sh --- rebuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebuild.sh b/rebuild.sh index dec6419..38b23b8 100755 --- a/rebuild.sh +++ b/rebuild.sh @@ -22,9 +22,9 @@ if [[ $machine == "" ]]; then fi if [[ $1 == "-c" || $1 == "--clean-garbage" ]]; then - clean_garbage=y + clean_garbage=Y else - read -p "Clean garbage? [Y/N]: " clean_garbage + read -p "Clean garbage? [y/N]: " clean_garbage fi sudo nixos-rebuild switch --impure --flake .#$machine || exit 1