steam.runtime-wrapped: use throw, not abort

This commit is contained in:
Adam Joseph 2023-11-22 16:46:03 -08:00 committed by Jörg Thalheim
parent 789f7281f0
commit db04185bc9

View File

@ -21,7 +21,7 @@ let
gnuArch = if steamArch == "amd64" then "x86_64-linux-gnu"
else if steamArch == "i386" then "i386-linux-gnu"
else abort "Unsupported architecture";
else throw "Unsupported architecture";
libs = [ "lib/${gnuArch}" "lib" "usr/lib/${gnuArch}" "usr/lib" ];
bins = [ "bin" "usr/bin" ];