From ed2e6672e4b99b76c7f878f3a9250c92ef653158 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Sat, 14 Dec 2024 15:54:51 +0530 Subject: [PATCH] nix: fix typo in lib --- nix/scripts/lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/scripts/lib.sh b/nix/scripts/lib.sh index 85a0b7a335..89993ade0a 100755 --- a/nix/scripts/lib.sh +++ b/nix/scripts/lib.sh @@ -38,8 +38,8 @@ nix_install_type() { "${UID}") echo "single";; "(${UID})") echo "single";; "") echo "none"; - echo "No Nix installtion detected!" >&2;; - *) echo "Unknown Nix installtion type!" >&2; exit 1;; + echo "No Nix installation detected!" >&2;; + *) echo "Unknown Nix installation type!" >&2; exit 1;; esac fi }