Skip to content

Commit 6909ea6

Browse files
authored
tools: pass the Temporal disable flag when disabled in shell.nix
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #62733 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
1 parent db9da5d commit 6909ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ let
6565
else
6666
"--with-intl=${if useSharedICU then "system" else icu}-icu"
6767
)
68+
"--v8-${if withTemporal then "enable" else "disable"}-temporal-support"
6869
]
69-
++ pkgs.lib.optional withTemporal "--v8-enable-temporal-support"
7070
++ pkgs.lib.optional (withTemporal && useSharedTemporal) "--shared-temporal_capi";
7171
in
7272
pkgs.mkShell {

0 commit comments

Comments
 (0)