File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 1965a156f0fa0f3e1528af7deedd34c21dd5a1e8
2
+ refs/heads/master: b81897d7e40f2a8b227230e9494c1a6031c846f4
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def unpack_snapshot(snap):
15
15
tar = tarfile .open (dl_path )
16
16
kernel = get_kernel ()
17
17
for name in snapshot_files [kernel ]:
18
- p = os . path . join ( "rust-stage0" , name )
18
+ p = "rust-stage0/" + name
19
19
fp = os .path .join ("stage0" , name )
20
20
print ("extracting " + fp )
21
21
tar .extract (p , download_unpack_base )
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ def make_snapshot():
113
113
tar = tarfile .open (file0 , "w:bz2" )
114
114
for name in snapshot_files [kernel ]:
115
115
tar .add (os .path .join ("stage2" , name ),
116
- os . path . join ( "rust-stage0" , name ) )
116
+ "rust-stage0/" + name )
117
117
tar .close ()
118
118
119
119
h = hash_file (file0 )
You can’t perform that action at this time.
0 commit comments