From 4047e938ebff10557898cb43148e70ce9414c324 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 22 Sep 2022 23:01:18 +0200 Subject: [PATCH] subcommand: Fix -e of com_prefs(). The config variable may consist of more than one path, and we want to pass each as a separate argument to the editor. --- subcommand | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subcommand b/subcommand index 6cb53d5..e544ab0 100644 --- a/subcommand +++ b/subcommand @@ -238,7 +238,7 @@ com_prefs() (($? != 0)) && return ret=-$E_GSU_EDITOR result="${EDITOR:-vi}" - "$result" "$conf" + "$result" $conf (($? != 0)) && return ret=$GSU_SUCCESS return -- 2.39.2