fix(travis): incorrectly capitalized cargo.toml

This caused cargo on a case-sensitive file-system not to find the
cargo file, which made it to look upwards in the directory structure
to find the correctly named Cargo.toml fo the 'cmn' development
project.
This commit is contained in:
Sebastian Thiel
2015-03-15 11:51:24 +01:00
parent 7f33cf22a5
commit 31efbf4fb0
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ api:
# all output directories are relative to the one set for the respective API
- source: README.md
- source: LICENSE.md
- source: cargo.toml
- source: Cargo.toml
- source: lib.rs
output_dir: src
cargo:

View File

@@ -62,10 +62,10 @@ ${gen_root_stamp}: ${' '.join(i[0] for i in sds)} ${api_json_inputs} $(MAKO_STAN
${api_name}: ${api_common}
${api_cargo}: ${api_name}
(cd ${gen_root} && cargo $(ARGS))
cd ${gen_root} && cargo $(ARGS)
${api_doc_index}: ${api_name}
(cd ${gen_root} && cargo doc)
cd ${gen_root} && cargo doc
@echo "Docs for ${api_name} at $@"
${api_doc}: ${api_doc_index}