Commit 395e5d76 authored by Theodore Ni's avatar Theodore Ni Committed by Emery Hemingway
Browse files

opensmalltalk-vm: fix evaluation on darwin

parent c72f24ec
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -180,5 +180,7 @@ let

  platform = stdenv.targetPlatform.system;
in
  vmsByPlatform.${platform} or
    (throw "Unsupported platform ${platform}: only the following platforms are supported: ${builtins.attrNames vmsByPlatform}")
  vmsByPlatform.${platform} or throw (
    "Unsupported platform ${platform}: only the following platforms are supported: " +
    builtins.toString (builtins.attrNames vmsByPlatform)
  )