summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenky Shankar <venky@gluster.com>2011-08-04 14:06:08 +0530
committerAnand Avati <avati@gluster.com>2011-08-04 01:54:22 -0700
commitebeedba9d76e51f4ddeacfbbf335e3eab6272435 (patch)
treedcd65d78c2c4c5070b5d6a6ef56c984a5f177ee6
parent967199adb1d73138158b5ed0a3b818b3adf66cac (diff)
use GIT_EDITOR env variable instead of EDITOR
Change-Id: I90be06e1051ed5005d10e4ca248029ef776d0224 BUG: 3326 Reviewed-on: http://review.gluster.com/159 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Anand Avati <avati@gluster.com>
-rwxr-xr-xrfc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc.sh b/rfc.sh
index 1439c2f43..e1a7d03ff 100755
--- a/rfc.sh
+++ b/rfc.sh
@@ -33,7 +33,7 @@ function rebase_changes()
{
git fetch --all;
- EDITOR=$0 git rebase -i origin/$branch;
+ GIT_EDITOR=$0 git rebase -i origin/$branch;
}