From 036a947521fd33a0ac97f95219cb0956236bfd52 Mon Sep 17 00:00:00 2001 From: Giacomo Sanchietti Date: Mon, 9 Nov 2020 16:05:01 +0100 Subject: [PATCH] rpm: fix installation warning (#479) Avoid cosmetic error when installing the package: line 8: cho: command not found --- packages/rpm/n2n.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rpm/n2n.spec.in b/packages/rpm/n2n.spec.in index 32f6e09..8448ab4 100644 --- a/packages/rpm/n2n.spec.in +++ b/packages/rpm/n2n.spec.in @@ -78,7 +78,7 @@ if ! grep -q n2n /etc/group; then fi if ! /usr/bin/id -u n2n > /dev/null 2>&1; then - cho 'Creating n2n user' + echo 'Creating n2n user' /usr/sbin/useradd -M -N -g n2n -r -s /bin/false n2n fi