Explorar o código

nixpkgs/elvish: fix use local error handling

Thomas Dy %!s(int64=2) %!d(string=hai) anos
pai
achega
400a847e67
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      .config/nixpkgs/elvish/lib/config.elv

+ 2 - 1
.config/nixpkgs/elvish/lib/config.elv

@@ -1,3 +1,4 @@
+use str
 use prompt
 use nix-shell
 use direlv
@@ -41,7 +42,7 @@ eval (carapace _carapace|slurp)
 try {
   use local
 } catch e {
-  if (not-eq $e[reason] "<unknown no such module: local>") {
+  if (not (str:contains (to-string $e[reason]) "no such module")) {
     fail $e
   }
 }