From 14737252a1e6a689bc8a681fd45a943429d2e500 Mon Sep 17 00:00:00 2001 From: Eugene Syromiatnikov Date: Thu, 24 Jul 2025 17:33:14 +0200 Subject: [PATCH] util/ctags.sh: tfix in a "set --" call MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Eugene Syromiatnikov Reviewed-by: Saša Nedvědický Reviewed-by: Matt Caswell Reviewed-by: Paul Dale Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/28059) --- util/ctags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ctags.sh b/util/ctags.sh index 60fa5369297..6dadb4092ab 100755 --- a/util/ctags.sh +++ b/util/ctags.sh @@ -26,7 +26,7 @@ if ! type "${CTAGS}" > /dev/null; then fi if [ $# -eq 0 ]; then - set - -R + set -- -R fi if ! "${CTAGS}" --version | grep -q "Universal Ctags"; then -- 2.47.3