Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src/config.rs: default to archive.org, not purl.org #253

Merged
merged 1 commit into from
Nov 2, 2018
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

The following changes will appear in the next release:

- None yet
- The URL embedded in the code that points to the default bundle has been
changed to point to the archive.org domain. Hopefully this will result in
more reliable service — there have been problems with SSL certificate
updates on purl.org in the past.


# 0.1.10 (2018 Sep 28)
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn activate_config_test_mode(forced: bool) {


const DEFAULT_CONFIG: &'static str = r#"[[default_bundles]]
url = "https://purl.org/net/pkgwpub/tectonic-default"
url = "https://archive.org/services/purl/net/pkgwpub/tectonic-default"
"#;


Expand Down