This commit is contained in:
Marc Beninca 2021-10-10 04:22:32 +02:00 committed by Marc Beninca
parent 21464b0035
commit b155d8ad83
2 changed files with 2 additions and 4 deletions

View file

@ -7,9 +7,6 @@ import hypertext
import msys
MINGW = 'mingw'
class Remote:
def __init__(self, args):
self.location = args[arguments.REMOTE]
@ -33,7 +30,7 @@ class Remote:
location = os.path.join(location, subsystem, architecture)
else:
subsystem = f'{ss}{msys.ARCHITECTURES_BITS[architecture]}'
location = os.path.join(location, MINGW, subsystem)
location = os.path.join(location, msys.CRT, subsystem)
if subsystem in msys.ARCHITECTURES_SUBSYSTEMS[architecture]:
location = os.path.join(location,
f'{subsystem}{msys.CATALOG}')