Unverified Commit b54936c1 authored by Matt Sturgeon's avatar Matt Sturgeon Committed by GitHub
Browse files

check-meta: defaultCPEParts: accomodate null pname (#458529)

parents 088c4f24 5ffd35a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -677,7 +677,7 @@ let
          defaultCPEParts = {
            part = "a";
            #vendor = null;
            ${if attrs ? pname then "product" else null} = attrs.pname;
            ${if attrs.pname or null != null then "product" else null} = attrs.pname;
            #version = null;
            #update = null;
            edition = "*";