From b81897d7e40f2a8b227230e9494c1a6031c846f4 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 3 May 2011 16:53:36 -0700 Subject: [PATCH] More python portability fixes (for windows). --- src/etc/get-snapshot.py | 2 +- src/etc/snapshot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/get-snapshot.py b/src/etc/get-snapshot.py index f1a85189e2b..4fce01e1d93 100755 --- a/src/etc/get-snapshot.py +++ b/src/etc/get-snapshot.py @@ -15,7 +15,7 @@ def unpack_snapshot(snap): tar = tarfile.open(dl_path) kernel = get_kernel() for name in snapshot_files[kernel]: - p = os.path.join("rust-stage0", name) + p = "rust-stage0/" + name fp = os.path.join("stage0", name) print("extracting " + fp) tar.extract(p, download_unpack_base) diff --git a/src/etc/snapshot.py b/src/etc/snapshot.py index 924568ee930..8eaa37917fa 100644 --- a/src/etc/snapshot.py +++ b/src/etc/snapshot.py @@ -113,7 +113,7 @@ def make_snapshot(): tar = tarfile.open(file0, "w:bz2") for name in snapshot_files[kernel]: tar.add(os.path.join("stage2", name), - os.path.join("rust-stage0", name)) + "rust-stage0/" + name) tar.close() h = hash_file(file0)