Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update lockfile_changed script to search for all lockfiles.
  • Loading branch information
frewsxcv committed Dec 8, 2016
1 parent 21417f5 commit 968346d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ci/lockfile_changed.sh
Expand Up @@ -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}" ]]

0 comments on commit 968346d

Please sign in to comment.