From 8fc62ba8da80bf3337312d7d5c1e20f38835040e Mon Sep 17 00:00:00 2001 From: pedro Date: Fri, 20 Sep 2024 17:03:50 -0300 Subject: [PATCH] deploy-workbench.sh: bugfix wrong check --- deploy-workbench.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-workbench.sh b/deploy-workbench.sh index 00c83ec..9f1bcfc 100755 --- a/deploy-workbench.sh +++ b/deploy-workbench.sh @@ -382,7 +382,7 @@ prepare_chroot_env() { if [ -z "${VERSION_CODENAME:-}" ]; then . /etc/os-release echo "TAKING OS-RELEASE FILE" - if [ "${ID}" = "debian" ]; then + if [ ! "${ID}" = "debian" ]; then echo "ERROR: ubuntu detected, then you are enforced to specify debian variant" echo " use for example \`VERSION_CODENAME='bookworm'\` or similar" exit 1