mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
Merge pull request #5664 from tweag/catch-exception-in-repl
Catch flake-related exception type in REPL
This commit is contained in:
commit
c18238d92a
@ -356,6 +356,8 @@ StringSet NixRepl::completePrefix(string prefix)
|
||||
// Quietly ignore evaluation errors.
|
||||
} catch (UndefinedVarError & e) {
|
||||
// Quietly ignore undefined variable errors.
|
||||
} catch (BadURL & e) {
|
||||
// Quietly ignore BadURL flake-related errors.
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user