diff options
| author | Graydon Hoare <[email protected]> | 2011-05-03 11:34:44 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-03 11:34:44 -0700 |
| commit | dbe5dc97687a1d7dd1aaa552c8b84c22765a0e9f (patch) | |
| tree | fb2a0d38e8892343ddc0dd68f1c5f3d1c902082a /src/etc | |
| parent | Small fixes to snapshot script. (diff) | |
| download | rust-dbe5dc97687a1d7dd1aaa552c8b84c22765a0e9f.tar.xz rust-dbe5dc97687a1d7dd1aaa552c8b84c22765a0e9f.zip | |
Attempt to shift build to stage0-from-snapshots.
Diffstat (limited to 'src/etc')
| -rw-r--r-- | src/etc/snapshot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/snapshot.py b/src/etc/snapshot.py index 7dd963e8..924568ee 100644 --- a/src/etc/snapshot.py +++ b/src/etc/snapshot.py @@ -10,7 +10,7 @@ src_dir = scrub(os.getenv("CFG_SRC_DIR")) if not src_dir: raise Exception("missing env var CFG_SRC_DIR") -snapshotfile = os.path.join(src_dir, "snapshots.txt") +snapshotfile = os.path.join(src_dir, "src", "snapshots.txt") download_url_base = "http://dl.rust-lang.org/stage0-snapshots" download_dir_base = "dl" download_unpack_base = os.path.join(download_dir_base, "unpack") |