From 3dc0fabbac3df599a402774897f6de2c2eadc480 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 85a0b7a3353..89993ade0ab 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 }