mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 05:14:24 +00:00
fae587d847
Source-Repo: https://github.com/servo/servo Source-Revision: 51a5a3402ced7a330c2a7d377dc4459792a28bee
14 lines
366 B
Bash
Executable File
14 lines
366 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
diff="$(find . -name 'Cargo.lock' -print0 | xargs -0 git diff)"
|
|
echo "${diff}"
|
|
[[ -z "${diff}" ]]
|