summaryrefslogtreecommitdiffstats
path: root/Modules/describe.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/describe.sh')
-rwxr-xr-xModules/describe.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/describe.sh b/Modules/describe.sh
index 91730b8..6425ed5 100755
--- a/Modules/describe.sh
+++ b/Modules/describe.sh
@@ -2,15 +2,15 @@
# Check for git and a git repo.
if head=`git rev-parse --verify HEAD 2>/dev/null`; then
- echo -n `git describe`
+ /bin/echo -n `git describe`
# Are there uncommitted changes?
git update-index --refresh --unmerged > /dev/null
- git diff-index --quiet HEAD || echo -n -dirty
+ git diff-index --quiet HEAD || /bin/echo -n -dirty
else
# Check for version tag
if [ -e version.tag ]; then
- echo -n `cat version.tag`
+ /bin/echo -n `cat version.tag`
fi
fi