Skip to content

Commit

Permalink
Use an absolute path to reference_sources
Browse files Browse the repository at this point in the history
With a relative path, I can't add tectonic's git repository as a dependency in Cargo.toml; attempting to do so gives:

```
$ cargo build
    Updating git repository `https://github.com/tectonic-typesetting/tectonic`
error: failed to load source for a dependency on `tectonic`                     

Caused by:
  Unable to update https://github.com/tectonic-typesetting/tectonic

Caused by:
  failed to update submodule `reference_sources`

Caused by:
  invalid url `../tectonic-staging.git`: relative URL without a base
```
  • Loading branch information
jneem authored Jun 5, 2018
1 parent af77f54 commit eaa4de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "reference_sources"]
path = reference_sources
url = ../tectonic-staging.git
url = https://github.com/tectonic-typesetting/tectonic-staging

0 comments on commit eaa4de4

Please sign in to comment.