mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
8 lines
272 B
Bash
Executable File
8 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# add git revision to autojump
|
|
gitrevision=`git describe`
|
|
if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != "" ]]; then
|
|
gitrevision=$gitrevision"-dirty"
|
|
fi
|
|
sed -i "s/^AUTOJUMP_VERSION = \".*\"$/AUTOJUMP_VERSION = \"$gitrevision\"/" autojump
|