diff --git a/bin/git-bb-create-pull-request b/bin/git-bb-create-pull-request index 8ab3990..63b0328 100755 --- a/bin/git-bb-create-pull-request +++ b/bin/git-bb-create-pull-request @@ -7,7 +7,7 @@ # License: Apache 2.0 require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def construct_PR_URL remote = git_remote() diff --git a/bin/git-bb-list-pull-requests b/bin/git-bb-list-pull-requests index eed45f9..34ed1be 100755 --- a/bin/git-bb-list-pull-requests +++ b/bin/git-bb-list-pull-requests @@ -7,7 +7,7 @@ # License: Apache 2.0 require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def construct_PR_list_URL remote = git_remote() diff --git a/bin/git-bb-open b/bin/git-bb-open index 7ade957..9b1728e 100755 --- a/bin/git-bb-open +++ b/bin/git-bb-open @@ -7,7 +7,7 @@ # License: Apache 2.0, see LICENSE in this repository. require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def constructURL remote = git_remote() diff --git a/bin/bbhelpers.rb b/bin/githelpers.rb similarity index 100% rename from bin/bbhelpers.rb rename to bin/githelpers.rb