File: showrev.sh

package info (click to toggle)
libsdl2 2.0.0%2Bdfsg1-2~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 55,664 kB
  • sloc: ansic: 124,626; sh: 10,893; objc: 3,400; cpp: 2,314; perl: 1,002; makefile: 396; python: 49
file content (7 lines) | stat: -rwxr-xr-x 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/bin/sh
#
# Print the current source revision, if available

# FIXME: this prints the tip, which isn't useful if you're on a different
#  branch, or just not sync'd to the tip.
hg tip --template 'hg-{rev}:{node|short}' || (echo "hg-0:baadf00d"; exit 1)