Commit 5f7bce21 authored by Charlotte 🦝 Deleńkec's avatar Charlotte 🦝 Deleńkec Committed by Weijia Wang
Browse files

daytona-bin: throw on unsupported systems

parent 92e1e3ac
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -30,7 +30,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
        };
      };
    in
    fetchurl urls."${stdenvNoCC.hostPlatform.system}";
    fetchurl (
      urls."${stdenvNoCC.hostPlatform.system}"
        or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}")
    );

  dontUnpack = true;