fix: correct CMD

incorrectly escaped `[ -n "$GRAMINE_DIRECT" ]`

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-06-18 10:32:39 +02:00
parent b6c1b5dd0a
commit dba206cc75
Signed by: harald
GPG key ID: F519A1143B3FBE32

View file

@ -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;