nushell: throw instead of abort (#6870)

This commit is contained in:
Joaquín Triñanes
2025-05-02 15:45:16 +02:00
committed by GitHub
parent 2eabb26d08
commit 355a6b937d

View File

@@ -81,5 +81,5 @@ rec {
}${outroSpace}}"
)
else
abort "nushell.toNushell: type ${lib.typeOf v} is unsupported";
throw "nushell.toNushell: type ${lib.typeOf v} is unsupported";
}