docdiff.sh 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/bin/bash
  2. # Copyright 2023 Google LLC
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. set -euo pipefail
  16. recursive_unminify_json() {
  17. target_dir="$1";
  18. pushd "$target_dir";
  19. find . -name "*.json" -print0 | while read -d $'\0' file
  20. do
  21. python3 -m json.tool --sort-keys "$file" "$file";
  22. done
  23. popd;
  24. }
  25. recursive_unminify_json $1;
  26. recursive_unminify_json $2;
  27. # git diff exits with a non-zero code when a diff is present,
  28. # which we want to ignore.
  29. set +euo pipefail
  30. git diff --no-index "$1" "$2";
  31. exit 0;