1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +00:00

remove adding git version to autojump install

This commit is contained in:
William Ting
2012-11-01 04:25:42 -05:00
parent ac1bfeb784
commit f46b541105
4 changed files with 2 additions and 23 deletions

View File

@@ -1,18 +0,0 @@
#!/usr/bin/env bash
# add git revision to autojump
# Fail silently if there is no git directory, ie. if the user installed from a regular download
if [[ ! -d .git ]]; then
exit
fi
if [ -z "$1" ]; then
gitrevision=`git describe`
if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != "" ]]; then
gitrevision=$gitrevision"-dirty"
fi
else
gitrevision="$1"
fi
sed -i "s/^VERSION = \".*\"$/VERSION = \"$gitrevision\"/" ./bin/autojump