Merge pull request #238093 from wegank/opensmalltalk-vm-linux

opensmalltalk-vm: fix eval
This commit is contained in:
Weijia Wang
2023-06-16 16:23:28 +03:00
committed by GitHub
@@ -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)
)
))