Skip to content

Commit c803cb3

Browse files
committed
Validate bubblewrap env var names
1 parent 41bd76d commit c803cb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix2gpu/env.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ in
8484
totalEnv = config.env // config.extraEnv;
8585
in
8686
lib.mapAttrsToList translateToGoEnvString totalEnv;
87-
bubblewrap.environment = config.env // config.extraEnv;
87+
bubblewrap.environment = builtins.deepSeq (lib.mapAttrsToList translateToGoEnvString totalEnv) totalEnv;
8888
};
8989
}

0 commit comments

Comments
 (0)