remote
This commit is contained in:
parent
2e366f71f1
commit
f9584f4458
3 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@ import argparse
|
|||
import os
|
||||
|
||||
import architecture
|
||||
import msys
|
||||
import remote as r
|
||||
import subsystem
|
||||
|
||||
ACTION = 'action'
|
||||
|
@ -75,7 +75,7 @@ compression applying to archive
|
|||
|
||||
action='info',
|
||||
|
||||
remote=msys.REPOSITORY,
|
||||
remote=r.MAIN,
|
||||
architectures=[architecture.MAIN],
|
||||
subsystems=[subsystem.MAIN, 'mingw'],
|
||||
|
||||
|
|
1
msys.py
1
msys.py
|
@ -1,2 +1 @@
|
|||
CHARSET = 'u8'
|
||||
REPOSITORY = 'https://repo.msys2.org'
|
||||
|
|
|
@ -5,6 +5,8 @@ import arguments
|
|||
import hypertext
|
||||
import repository
|
||||
|
||||
MAIN = 'https://repo.msys2.org'
|
||||
|
||||
|
||||
class Remote(repository.Repository):
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in a new issue