Skip to content

Commit

Permalink
Fix supported Platform.sh services generation
Browse files Browse the repository at this point in the history
  • Loading branch information
tucksaun committed Sep 5, 2023
1 parent fd74a24 commit a19c5f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions local/platformsh/config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions local/platformsh/generator/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func generateConfig() {
}

func parseServices() (string, error) {
resp, err := http.Get("https://raw.githubusercontent.com/platformsh/platformsh-docs/master/docs/data/registry.json")
resp, err := http.Get("https://raw.githubusercontent.com/platformsh/platformsh-docs/master/shared/data/registry.json")
if err != nil {
return "", err
}
Expand Down Expand Up @@ -138,7 +138,7 @@ func parseServices() (string, error) {
}

func parsePHPExtensions() (string, error) {
resp, err := http.Get("https://raw.githubusercontent.com/platformsh/platformsh-docs/master/docs/data/php_extensions.yaml")
resp, err := http.Get("https://raw.githubusercontent.com/platformsh/platformsh-docs/master/shared/data/php_extensions.yaml")
if err != nil {
return "", err
}
Expand Down

0 comments on commit a19c5f6

Please sign in to comment.