diff options
| author | Graydon Hoare <[email protected]> | 2011-05-13 17:00:43 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-13 17:06:58 -0700 |
| commit | ae784df3ce0c354fde00a6d9a4a50d642bdb3560 (patch) | |
| tree | af075f13c465dd3e43d8f9ade50d740953e02e79 /src/etc/get-snapshot.py | |
| parent | rustc: Move replace_expr_type() from ty to typeck, as it's only used in the l... (diff) | |
| download | rust-ae784df3ce0c354fde00a6d9a4a50d642bdb3560.tar.xz rust-ae784df3ce0c354fde00a6d9a4a50d642bdb3560.zip | |
Add support for 'T' transition snapshots, which are identical to S snapshots except they tell the makefile to stop at stage1.
Diffstat (limited to 'src/etc/get-snapshot.py')
| -rwxr-xr-x | src/etc/get-snapshot.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/etc/get-snapshot.py b/src/etc/get-snapshot.py index 4fce01e1..806d3751 100755 --- a/src/etc/get-snapshot.py +++ b/src/etc/get-snapshot.py @@ -41,9 +41,6 @@ def determine_curr_snapshot_for_platform(): parsed = parse_line(i, line) if (not parsed): continue - if parsed["type"] == "transition": - raise Exception("working on a transition, not updating stage0") - if found_snap and parsed["type"] == "file": if parsed["platform"] == platform: hsh = parsed["hash"] |