summaryrefslogtreecommitdiffstats
path: root/build-release
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2009-01-05 16:35:21 -0800
committerBrendan Cully <brendan@kublai.com>2009-01-05 16:35:21 -0800
commitb70c48f5070df947b72065219e78babd7791b565 (patch)
treebf7d4153f53b4d542ee4598edfd50e388c12c553 /build-release
parentfe7557ffd322c2b01cec8143565abc6975e13765 (diff)
Fall back to vi if VISUAL is unset in build-release
Diffstat (limited to 'build-release')
-rwxr-xr-xbuild-release2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-release b/build-release
index d15d6140..41e68300 100755
--- a/build-release
+++ b/build-release
@@ -44,7 +44,7 @@ OVERSION="`cat VERSION`"
OTAG="mutt-`echo $OVERSION | tr . -`-rel"
echo $OVERSION | awk -F . '{printf("%d.%d.%d\n", $1, $2, $3 + 1);}' > VERSION
-${VISUAL} VERSION
+${VISUAL:-vi} VERSION
VERSION="`cat VERSION`"
TAG="mutt-`echo $VERSION | tr . -`-rel"