diff options
| -rw-r--r-- | pkg/config/lib/bzr/bzr.star | 4 | ||||
| -rw-r--r-- | pkg/config/lib/hg/hg.star | 4 | ||||
| -rw-r--r-- | pkg/config/lib/svn/svn.star | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/pkg/config/lib/bzr/bzr.star b/pkg/config/lib/bzr/bzr.star index afcc08a..2376f18 100644 --- a/pkg/config/lib/bzr/bzr.star +++ b/pkg/config/lib/bzr/bzr.star @@ -1,8 +1,8 @@ # Utilities to index Go modules hosted on Bazaar repositories. -_BZR = "bzr" +_BAZAAR = "bzr" bzr = make_module( "bzr", - BZR = _BZR, + BAZAR = _BAZAAR, ) diff --git a/pkg/config/lib/hg/hg.star b/pkg/config/lib/hg/hg.star index dad8fdd..524578a 100644 --- a/pkg/config/lib/hg/hg.star +++ b/pkg/config/lib/hg/hg.star @@ -1,8 +1,8 @@ # Utilities to index Go modules hosted on Mercurial repositories. -_HG = "hg" +_MERCURIAL = "hg" hg = make_module( "hg", - HG = _HG, + MERCURIAL = _MERCURIAL, ) diff --git a/pkg/config/lib/svn/svn.star b/pkg/config/lib/svn/svn.star index 16196d2..9f2a5bc 100644 --- a/pkg/config/lib/svn/svn.star +++ b/pkg/config/lib/svn/svn.star @@ -1,8 +1,8 @@ # Utilities to index Go modules hosted on Subversion repositories. -_SVN = "svn" +_SUBVERSION = "svn" svn = make_module( "svn", - SVN = _SVN, + SUBVERSION = _SUBVERSION, ) |
