summaryrefslogtreecommitdiffstats
path: root/NP-VERSION-GEN
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 10:55:57 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 10:55:57 (GMT)
commitbf3d216085eab8577412db9cef5f75701dafd8e6 (patch)
treecea31041e125d0dd5355ecf0dec3d5f2e7c8b03d /NP-VERSION-GEN
parent9bcfa9cdede27be34d11f42dfae3d8fd60fc92bc (diff)
downloadmonitoring-plugins-bf3d216085eab8577412db9cef5f75701dafd8e6.tar.gz
Minor fix in NP-VERSION-GEN
Diffstat (limited to 'NP-VERSION-GEN')
-rwxr-xr-xNP-VERSION-GEN4
1 files changed, 2 insertions, 2 deletions
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN
index f963e63..10428b3 100755
--- a/NP-VERSION-GEN
+++ b/NP-VERSION-GEN
@@ -29,8 +29,8 @@ elif test -d $SRC_ROOT/.svn -o -f $SRC_ROOT/.svn &&
29 *$LF*) (exit 1) ;; 29 *$LF*) (exit 1) ;;
30 Revision:*) 30 Revision:*)
31 VN=`echo $VN | awk '{print $NF}'` 31 VN=`echo $VN | awk '{print $NF}'`
32 test "`svn status 2>/dev/null | grep '^[AMD]' | wc -l`" = 0 || 32 SS=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`
33 VN="$VN-dirty" ;; 33 test "$SS" = 0 || VN="$VN-dirty" ;;
34 esac 34 esac
35then 35then
36 VN=`echo "trunk.$VN" | sed -e 's/-/./g'`; 36 VN=`echo "trunk.$VN" | sed -e 's/-/./g'`;