Skip to content

Commit

Permalink
fix: MFE repo urls
Browse files Browse the repository at this point in the history
Repo urls must end with ".git". Otherwise `ADD --keep-git-dir` fails to
clone the repo.
  • Loading branch information
regisb committed Dec 11, 2023
1 parent d26c8a2 commit 69f2cc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorecommerce/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def _add_ecommerce_mfe_apps(
apps.update(
{
"orders": {
"repository": "https://github.com/edx/frontend-app-ecommerce",
"repository": "https://github.com/edx/frontend-app-ecommerce.git",
"port": 7296,
},
"payment": {
"repository": "https://github.com/edx/frontend-app-payment",
"repository": "https://github.com/edx/frontend-app-payment.git",
"port": 1998,
},
}
Expand Down

0 comments on commit 69f2cc4

Please sign in to comment.