From bef0bec012b6db5eccb234d7a660355937f5c76b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 8 Sep 2025 09:16:46 +0200 Subject: [PATCH] get-env.sh: Version the JSON output --- src/nix/get-env.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nix/get-env.sh b/src/nix/get-env.sh index 071edf9b9..371f80769 100644 --- a/src/nix/get-env.sh +++ b/src/nix/get-env.sh @@ -14,6 +14,7 @@ __functions="$(declare -F)" __dumpEnv() { printf '{\n' + printf ' "version": 1,\n' printf ' "bashFunctions": {\n' local __first=1