diff options
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") |