Skip to content

Commit

Permalink
fix(config): fix default config url
Browse files Browse the repository at this point in the history
  • Loading branch information
QaidVoid committed Oct 26, 2024
1 parent 0531083 commit 1862a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Default configuration
"repositories": [
{
"name": "ajam",
"url": "https://bin.ajam.dev",
"url": "https://bin.ajam.dev/x86_64",
"registry": "METADATA.AIO.json",
"sources": {
"bin": "https://bin.ajam.dev/x86_64",
Expand Down
2 changes: 1 addition & 1 deletion src/core/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl Config {
soar_path: "$HOME/.soar".to_owned(),
repositories: vec![Repository {
name: "ajam".to_owned(),
url: "https://bin.ajam.dev/{ARCH}".to_owned(),
url: format!("https://bin.ajam.dev/{ARCH}"),
registry: Some("METADATA.AIO.json".to_owned()),
sources,
}],
Expand Down

0 comments on commit 1862a7e

Please sign in to comment.