Skip to content

Commit

Permalink
Fix case on repo URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanheerdegen committed Mar 6, 2025
1 parent fb8ac00 commit 4d7779f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/access-test-model/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class AccessTestModel(CMakePackage):
"""ACCESS Test Model is a small test FORTRAN model component
used to test CI workflows."""

homepage = "https://github.com/ACCESS-NRI/ACCESS-TEST-model"
git = "https://github.com/ACCESS-NRI/ACCESS-TEST-model.git"
homepage = "https://github.com/ACCESS-NRI/access-test-model"
git = "https://github.com/ACCESS-NRI/access-test-model.git"

maintainers("aidanheerdegen", "codegat", "harshula")

Expand All @@ -27,4 +27,4 @@ class AccessTestModel(CMakePackage):
root_cmakelists_dir = "stub"

def url_for_version(self, version):
return "https://github.com/ACCESS-NRI/access-test-model/tarball/{0}".format(version)
return "https://github.com/ACCESS-NRI/access-test-model/tarball/{0}".format(version)

0 comments on commit 4d7779f

Please sign in to comment.