From 428bd2d374b41203df00f8686beddf8b9a0f0656 Mon Sep 17 00:00:00 2001 From: Markus Wamser Date: Tue, 30 May 2023 13:25:12 +0200 Subject: [PATCH] bento: typo fix in status message --- bento | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bento b/bento index 6b48a0e..cb43622 100755 --- a/bento +++ b/bento @@ -629,7 +629,7 @@ else MATCH=$(echo "$FLAKES" | awk -v name="${NAME}" 'BEGIN { sum = 0 } name == $1 { sum=sum+1 } END { print sum }') if [ "$MATCH" -ne 1 ] then - echo "Found ${MATCH} system with this name" + echo "Found ${MATCH} systems with this name" exit 2 else for flakes in $(find . -name flake.nix)