summaryrefslogtreecommitdiffstats
path: root/NP-VERSION-GEN
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 11:04:04 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 11:04:04 (GMT)
commitdb305b81c771a9d864852e73244374c715cd8f46 (patch)
tree64391cadad444406393597cb0a971901527e5c6a /NP-VERSION-GEN
parentbf3d216085eab8577412db9cef5f75701dafd8e6 (diff)
downloadmonitoring-plugins-db305b81c771a9d864852e73244374c715cd8f46.tar.gz
Fix it for good now
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 10428b3..657ef3c 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 SS=`svn status 2>/dev/null | grep '^[AMD]' | wc -l` 32 test "`svn status 2>/dev/null | grep '^[AMD]' | wc -l | tr -d ' '`" = 0 ||
33 test "$SS" = 0 || VN="$VN-dirty" ;; 33 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'`;