From 80a3d444dc0da262c775136149a78172eebf8707 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 1 Feb 2026 17:37:26 +0200 Subject: [PATCH] Fix bug --- scheme-venv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheme-venv b/scheme-venv index afb370e..6ae8d65 100755 --- a/scheme-venv +++ b/scheme-venv @@ -312,7 +312,7 @@ chmod +x "${venvpath}/bin/scheme-repl" if [ "${scheme_type}" = "interpreter" ]; then { echo "#!/bin/sh" - echo "if [ ! \"${VENV_DEBUG}\" = \"\" ]; then set -x; fi" + echo "if [ ! \"\${VENV_DEBUG}\" = \"\" ]; then set -x; fi" echo "IF=\"\$(realpath \"\${1}\")\"" echo "if [ \"${rnrs}\" = \"r6rs\" ]; then OF=\"\${IF%.sps}\"; else OF=\"\${IF%.scm}\"; fi" # shellcheck disable=SC2028