File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1010 } ;
1111 flake-utils = { url = "github:numtide/flake-utils" ; } ;
1212 flake-compat = {
13- url = github:edolstra/flake-compat ;
13+ url = " github:edolstra/flake-compat" ;
1414 flake = false ;
1515 } ;
1616 } ;
Original file line number Diff line number Diff line change 11import json
2+ import logging
23from sys import exit as sysexit
34from typing import Dict , Iterator , Union
45
@@ -122,6 +123,7 @@ def print_buildreport(build: BuildStatus) -> None:
122123
123124
124125def main () -> None :
126+ logging .basicConfig (format = '%(levelname)s: %(message)s' )
125127
126128 args = process_args ()
127129
@@ -134,6 +136,9 @@ def main() -> None:
134136 all_builds = {}
135137
136138 for package in packages :
139+ if package .startswith ("python3Packages" ) or package .startswith ("python3.pkgs" ):
140+ logging .error ("instead of '%s', you want python3XPackages... (replace X)" , package )
141+ continue
137142 package_name = guess_packagename (package , args .arch , is_channel )
138143 ident = f"{ jobset } /{ package_name } "
139144 if only_url :
You can’t perform that action at this time.
0 commit comments