Update rfc.sh to use 'true'.

true is /usr/bin/true os OSX but is in the path
on both GNU/Linux and OSX.

Change-Id: Ic54b0eb965f87ddb26e8f18e4b317b6a2e90d8d3
This commit is contained in:
James E. Blair 2011-08-23 07:53:25 -07:00
parent 9d005656a2
commit 3554d5a755
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ set_hooks_commit_msg()
chmod +x $f;
GIT_EDITOR=/bin/true git commit --amend
GIT_EDITOR=true git commit --amend
}
add_remote()
@ -87,7 +87,7 @@ rebase_changes()
{
git fetch;
GIT_EDITOR=/bin/true git rebase -i origin/$branch || exit $?;
GIT_EDITOR=true git rebase -i origin/$branch || exit $?;
}