author | Philipp Wiesemann <philipp.wiesemann@arcor.de> |
Wed, 27 Jul 2016 20:47:08 +0200 | |
changeset 10211 | 2e4c1b2fce79 |
parent 4935 | a727eda441be |
permissions | -rwxr-xr-x |
2982
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
#!/bin/sh |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 |
# |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
3 |
# Print the current source revision, if available |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
|
4419
5e7e1f1a4056
Changed revision details to be a string (an hg changeset) instead of an int.
Ryan C. Gordon <icculus@icculus.org>
parents:
3280
diff
changeset
|
5 |
# FIXME: this prints the tip, which isn't useful if you're on a different |
5e7e1f1a4056
Changed revision details to be a string (an hg changeset) instead of an int.
Ryan C. Gordon <icculus@icculus.org>
parents:
3280
diff
changeset
|
6 |
# branch, or just not sync'd to the tip. |
4935
a727eda441be
Return an error code if Mercurial isn't installed
Sam Lantinga <slouken@libsdl.org>
parents:
4464
diff
changeset
|
7 |
hg tip --template 'hg-{rev}:{node|short}' || (echo "hg-0:baadf00d"; exit 1) |