summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVenky Shankar <venky@gluster.com>2011-08-04 16:33:13 +0530
committerAnand Avati <avati@gluster.com>2011-08-04 06:50:35 -0700
commit5552b7040e251aa2d90764b101806123d1b62b30 (patch)
tree92a550acd1a9a7ca71c3ef4cc893ab12db979eb6
parent4adf4973937238a067d17a380aeb5e9878d22580 (diff)
use GIT_EDITOR env variable instead of EDITOR
Change-Id: Ia9d8281707d144d7b37b5b155e45717e466e5bcf BUG: 3326 Reviewed-on: http://review.gluster.com/164 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 0d2b31793..1939f9628 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;
}