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: I3b83516d8e1d6b35c63fb4272fab4382c7967622 Reviewed-on: https://review.openstack.org/329 Reviewed-by: Joe Heck <heckj@mac.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
This commit is contained in:
parent
20517956da
commit
c97ded27d1
@ -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 $?;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user