Attempt to fix windows builder.
This commit is contained in:
parent
c9b14cc0dd
commit
202260f19e
@ -9,7 +9,11 @@ def unpack_snapshot(triple, snap):
|
|||||||
tar = tarfile.open(dl_path)
|
tar = tarfile.open(dl_path)
|
||||||
kernel = get_kernel(triple)
|
kernel = get_kernel(triple)
|
||||||
for p in tar.getnames():
|
for p in tar.getnames():
|
||||||
name = p.replace("rust-stage0/", "", 1);
|
|
||||||
|
# FIXME: Fix this once win32 snapshot globs are fixed.
|
||||||
|
name = p.replace("rust-stage0/stage3/", "", 1);
|
||||||
|
name = name.replace("rust-stage0/", "", 1);
|
||||||
|
|
||||||
stagep = os.path.join(triple, "stage0")
|
stagep = os.path.join(triple, "stage0")
|
||||||
fp = os.path.join(stagep, name)
|
fp = os.path.join(stagep, name)
|
||||||
print("extracting " + p)
|
print("extracting " + p)
|
||||||
|
@ -129,7 +129,7 @@ def make_snapshot(stage, triple, flag):
|
|||||||
file0 = partial_snapshot_name(date, rev, platform)
|
file0 = partial_snapshot_name(date, rev, platform)
|
||||||
|
|
||||||
def in_tar_name(fn):
|
def in_tar_name(fn):
|
||||||
cs = fn.split(os.sep)
|
cs = re.split(r"[\\/]", fn)
|
||||||
if len(cs) >= 2:
|
if len(cs) >= 2:
|
||||||
return os.sep.join(cs[-2:])
|
return os.sep.join(cs[-2:])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user