From 21417f5cd31e7c8a64165ba8bdd9bab181243a95 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 8 Dec 2016 09:49:17 -1000 Subject: [PATCH 1/2] Add uncommitted lockfile change. --- Cargo.lock | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 564a43c64d9..3e90dbb14e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" From 968346d907f5e02e83687ba017d0fbb7c97d773d Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 8 Dec 2016 09:49:41 -1000 Subject: [PATCH 2/2] Update lockfile_changed script to search for all lockfiles. --- etc/ci/lockfile_changed.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ci/lockfile_changed.sh b/etc/ci/lockfile_changed.sh index 6b3191291cc..ed52fbdf0fc 100755 --- a/etc/ci/lockfile_changed.sh +++ b/etc/ci/lockfile_changed.sh @@ -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}" ]]