actually remove the eval...

This commit is contained in:
Gunter Labes 2023-06-09 14:21:06 +02:00 committed by GitHub
parent d8e808a9cf
commit 2d20ec554c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2942,9 +2942,9 @@ _exec() {
fi fi
if [ "$_EXEC_TEMP_ERR" ]; then if [ "$_EXEC_TEMP_ERR" ]; then
eval "$@" 2>>"$_EXEC_TEMP_ERR" "$@" 2>>"$_EXEC_TEMP_ERR"
else else
eval "$@" "$@"
fi fi
} }