From dba206cc753049b92adcdaafa23c1a2b5376d87e Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 18 Jun 2024 10:32:39 +0200 Subject: [PATCH] fix: correct `CMD` incorrectly escaped `[ -n "$GRAMINE_DIRECT" ]` Signed-off-by: Harald Hoyer --- lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index af85f61..a03703a 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -169,7 +169,7 @@ _: Cmd = [ '' ${extraCmd}; - if [ -n \"$GRAMINE_DIRECT\" ]; then + if [ -n "$GRAMINE_DIRECT" ]; then exec gramine-direct ${name}; else [[ -r /var/run/aesmd/aesm.socket ]] || restart-aesmd >&2;