From 95a1ecf9849d66ea6115575b7cbbc6741145eff7 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sun, 28 Aug 2022 13:36:18 +0200 Subject: [PATCH] meta:envrc: `git fetch` in background Close/pipe std{in,out,err} as well as file descriptor 3 which is apparently necessary for the subshell not to wait for the fetch to finish. --- meta/envrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/envrc b/meta/envrc index e39188b..843c2b5 100644 --- a/meta/envrc +++ b/meta/envrc @@ -1 +1 @@ -git fetch --all +git fetch --all 0<&- &>/dev/null 3>&- & disown