Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dtvem/runtimes.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json",
"$schema": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json",
"node": "22.0.0",
"python": "3.8.9",
"ruby": "3.3.9"
Expand Down
2 changes: 1 addition & 1 deletion schemas/manifest.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/manifest.schema.json",
"$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/manifest.schema.json",
"title": "dtvem Runtime Manifest",
"description": "Manifest file containing available versions and download URLs for a runtime",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion schemas/runtimes.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json",
"$id": "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json",
"title": "dtvem Runtimes Configuration",
"description": "Configuration file for dtvem (Development Tool Virtual Environment Manager) to specify runtime versions for a project",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/internal/config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
type RuntimesConfig map[string]string

// SchemaURL is the URL to the runtimes.json schema
const SchemaURL = "https://raw.githubusercontent.com/dtvem/dtvem/main/schemas/runtimes.schema.json"
const SchemaURL = "https://raw.githubusercontent.com/CodingWithCalvin/dtvem.cli/main/schemas/runtimes.schema.json"

// ResolveVersion finds the version to use for a runtime
// Priority: local dtvem.config.json file (walking up directory tree) > global config
Expand Down