File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ from collections import defaultdict
99from pkgcraft .config import Config
1010from pkgcraft .error import PkgcraftError
1111from pkgcraft .logging import logger
12+ from pkgcraft .repo import EbuildRepo
1213
1314
1415def main ():
@@ -27,7 +28,7 @@ def main():
2728 try :
2829 config .load ()
2930 if os .path .sep in args .repo :
30- repo = config . add_repo (args .repo )
31+ repo = EbuildRepo (args .repo )
3132 else :
3233 repo = config .repos [args .repo ]
3334 except PkgcraftError as e :
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ from collections import defaultdict
99from pkgcraft .config import Config
1010from pkgcraft .error import PkgcraftError
1111from pkgcraft .logging import logger
12+ from pkgcraft .repo import EbuildRepo
1213
1314
1415def main ():
@@ -27,7 +28,7 @@ def main():
2728 try :
2829 config .load ()
2930 if os .path .sep in args .repo :
30- repo = config . add_repo (args .repo )
31+ repo = EbuildRepo (args .repo )
3132 else :
3233 repo = config .repos [args .repo ]
3334 except PkgcraftError as e :
You can’t perform that action at this time.
0 commit comments