From 15d60d9b992a24c31590ca2802a831447e71f29d Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Tue, 29 Oct 2024 15:19:33 +0100 Subject: [PATCH] Replace subshell with exec (#6140) --- drush | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drush b/drush index 01d29459d4..0e0de2363c 100755 --- a/drush +++ b/drush @@ -31,4 +31,4 @@ then export XDEBUG_MODE=off fi -"$DRUSH_PHP" "$@" +exec "$DRUSH_PHP" "$@"