Merge branch 'fix-get-stage0' of https://salsa.debian.org/rshearman/rust into debian/sid

This commit is contained in:
Fabian Grünbichler 2024-06-11 16:45:51 +02:00
commit 4b269b794d

View File

@ -11,7 +11,7 @@ from bootstrap import RustBuild
class DownloadOnlyRustBuild(RustBuild):
triple = None
def build_bootstrap(self, color, verbose_count):
def build_bootstrap(self):
pass
def run(self, *args):
pass
@ -26,7 +26,7 @@ def main(argv):
triple = argv.pop(1)
DownloadOnlyRustBuild.triple = triple
bootstrap.RustBuild = DownloadOnlyRustBuild
args = bootstrap.parse_args()
args = bootstrap.parse_args(argv)
# bootstrap.py likes to delete our .cargo directory out from under us
shutil.move(".cargo", ".cargo-bak")
try: