Last change
on this file since 869 was
815,
checked in by cfuguet, 10 years ago
|
tsar_boot: solve an incompatibility problem in the version.sh script
|
-
Property svn:executable set to
*
|
File size:
347 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | n="tsarboot" |
---|
4 | v=$(cat VERSION) |
---|
5 | t=$(date) |
---|
6 | u=${USER-root} |
---|
7 | h=$(hostname) |
---|
8 | |
---|
9 | reporev=$(svn info 2>/dev/null) |
---|
10 | if [ $? -ne 0 ]; |
---|
11 | then |
---|
12 | reporev=$(git svn info 2>/dev/null) |
---|
13 | fi |
---|
14 | |
---|
15 | reporev=$(echo "$reporev" | awk -F: '$1 == "Last Changed Rev" {print $2}') |
---|
16 | printf "%s" \ |
---|
17 | "const char versionstr[]=\"$n $v ($u@$h $t) (svn revision $reporev)\n\r\";" |
---|
Note: See
TracBrowser
for help on using the repository browser.