equal
deleted
inserted
replaced
2 # |
2 # |
3 # Print the current source revision, if available |
3 # Print the current source revision, if available |
4 |
4 |
5 # FIXME: this prints the tip, which isn't useful if you're on a different |
5 # FIXME: this prints the tip, which isn't useful if you're on a different |
6 # branch, or just not sync'd to the tip. |
6 # branch, or just not sync'd to the tip. |
7 hg tip --template 'hg-{rev}:{node|short}' || echo "hg-0:baadf00d" |
7 hg tip --template 'hg-{rev}:{node|short}' || (echo "hg-0:baadf00d"; exit 1) |