diff options
| author | Graydon Hoare <[email protected]> | 2011-05-12 12:56:15 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-12 13:08:57 -0700 |
| commit | 1fdddede227031b4ea1df98da7eb3e2fcc8c7d87 (patch) | |
| tree | c00f88cee7bc1424ad5e9245a9a1e93a8cabe0f0 /src/etc/make-snapshot.py | |
| parent | Register new snapshots for incompatible-syntax transition. (diff) | |
| download | rust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.tar.xz rust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.zip | |
Add snap-stageN targets.
Diffstat (limited to 'src/etc/make-snapshot.py')
| -rwxr-xr-x | src/etc/make-snapshot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/make-snapshot.py b/src/etc/make-snapshot.py index d02c0948..d46500cd 100755 --- a/src/etc/make-snapshot.py +++ b/src/etc/make-snapshot.py @@ -1,4 +1,4 @@ #!/usr/bin/env python -import snapshot -print(snapshot.make_snapshot()) +import snapshot, sys +print(snapshot.make_snapshot(sys.argv[1])) |