blob: 7557e49c614f5d90b70b6981344669c00d75e911 [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001#!/bin/sh
2# Wrapper to prevent failure if svnversion isn't available
3
4V=`svnversion ${PWD}/.. 2>/dev/null`
5if [ $? -gt 0 -o -z "$V" ]
6then
7 V='?'
8fi
9echo $V
10exit 0