aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock7
-rwxr-xr-xetc/ci/lockfile_changed.sh2
2 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 564a43c64d9..3e90dbb14e4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -223,6 +223,13 @@ 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"
source = "registry+https://github.com/rust-lang/crates.io-index"
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}" ]]