Auto merge of #14499 - frewsxcv:lockfile, r=jdm

Add uncommitted lockfile change; fix check script. 🔒

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14499)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-12-08 13:29:07 -08:00 committed by GitHub
commit 51a5a3402c
2 changed files with 8 additions and 1 deletions

7
Cargo.lock generated
View file

@ -222,6 +222,13 @@ name = "browserhtml"
version = "0.1.17"
source = "git+https://github.com/browserhtml/browserhtml?branch=crate#aafbb0996b02d1fadd4713c96e3d22b542f175a1"
[[package]]
name = "build-apk"
version = "0.0.1"
dependencies = [
"walkdir 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "byteorder"
version = "0.5.3"

View file

@ -8,6 +8,6 @@ set -o errexit
set -o nounset
set -o pipefail
diff="$(git diff -- */*/Cargo.lock)"
diff="$(find . -name 'Cargo.lock' -print0 | xargs -0 git diff)"
echo "${diff}"
[[ -z "${diff}" ]]