From 504f35a65bbf851cc4a3c76c09cb13770b26a525 Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Wed, 12 Feb 2025 15:42:59 -0500 Subject: [PATCH] synapse guest module: nitpick quote refactor --- modules/restricted-guests/synapse/scripts/run_in_venv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/restricted-guests/synapse/scripts/run_in_venv.sh b/modules/restricted-guests/synapse/scripts/run_in_venv.sh index 9f5ba12584..23adf1e03b 100755 --- a/modules/restricted-guests/synapse/scripts/run_in_venv.sh +++ b/modules/restricted-guests/synapse/scripts/run_in_venv.sh @@ -19,7 +19,7 @@ venv_path=${repo_root:-./}.venv if [ ! -d "$venv_path" ]; then "python${PYTHON_VERSION:-3}" -m venv "$venv_path" - "$venv_path/bin/pip" install -e ."[dev]" + "$venv_path/bin/pip" install -e '.[dev]' fi [ $# -gt 1 ] && . "$venv_path/bin/activate" && "$@"