opensmalltalk-vm: fix eval

This commit is contained in:
Weijia Wang
2023-06-16 16:19:06 +03:00
parent e44c81a3b8
commit e8d09fc809
@@ -180,7 +180,7 @@ let
platform = stdenv.targetPlatform.system;
in
vmsByPlatform.${platform} or throw (
vmsByPlatform.${platform} or (throw (
"Unsupported platform ${platform}: only the following platforms are supported: " +
builtins.toString (builtins.attrNames vmsByPlatform)
)
))