From 128fafce1e9d355ff677969e5a0e2f71db79bbee Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Thu, 25 Dec 2025 09:26:56 +0100 Subject: [PATCH] uvar migration: improve output on accidental early exit fish_job_summary shows this as "$sh -c ...". Make it "/bin/sh -c ...". --- share/functions/__fish_theme_migrate.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/__fish_theme_migrate.fish b/share/functions/__fish_theme_migrate.fish index 76ef546a4..b900c0da1 100644 --- a/share/functions/__fish_theme_migrate.fish +++ b/share/functions/__fish_theme_migrate.fish @@ -62,7 +62,7 @@ set --erase --universal fish_key_bindings" if $removing_uvars set -Ue fish_key_bindings $theme_uvars set -l sh (__fish_posix_shell) - $sh -c "sleep 7 # Please read above notice about universal variables" & + eval "$sh -c 'sleep 7 # Please read above notice about universal variables' &" end end