Skip to content

Commit 067fd4b

Browse files
committed
---
yaml --- r: 2335 b: refs/heads/master c: b81897d h: refs/heads/master i: 2333: 494243b 2331: 899601c 2327: 998ddd9 2319: 3cd57c0 2303: bdcacc9 v: v3
1 parent 62dafcf commit 067fd4b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 1965a156f0fa0f3e1528af7deedd34c21dd5a1e8
2+
refs/heads/master: b81897d7e40f2a8b227230e9494c1a6031c846f4

trunk/src/etc/get-snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def unpack_snapshot(snap):
1515
tar = tarfile.open(dl_path)
1616
kernel = get_kernel()
1717
for name in snapshot_files[kernel]:
18-
p = os.path.join("rust-stage0", name)
18+
p = "rust-stage0/" + name
1919
fp = os.path.join("stage0", name)
2020
print("extracting " + fp)
2121
tar.extract(p, download_unpack_base)

trunk/src/etc/snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def make_snapshot():
113113
tar = tarfile.open(file0, "w:bz2")
114114
for name in snapshot_files[kernel]:
115115
tar.add(os.path.join("stage2", name),
116-
os.path.join("rust-stage0", name))
116+
"rust-stage0/" + name)
117117
tar.close()
118118

119119
h = hash_file(file0)

0 commit comments

Comments
 (0)