summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenky Shankar <venky@gluster.com>2011-08-04 13:48:28 +0530
committerAnand Avati <avati@gluster.com>2011-08-04 01:42:23 -0700
commit46b84182990bc98a6fd8e1122c03e3504a5b83d2 (patch)
tree6307d216e31c8c2d591568e9ed51438482bc6775
parentdbee83598ad9a09484783d72aabab1ce9c4630f1 (diff)
use GIT_EDITOR env variable instead of EDITOR
Change-Id: I8deb44ef0f7752b7f58f2e320ec3e59724854840 BUG: 3326 Reviewed-on: http://review.gluster.com/157 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 492d104b7d3..274d9d13732 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;
}