We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec23e9 commit f1f2d6aCopy full SHA for f1f2d6a
pkgdiff
@@ -3,9 +3,12 @@
3
4
set -e -x
5
6
-mode=
+mode=default
7
while [[ ${#} -gt 0 ]]; do
8
case ${1} in
9
+ --all|-a)
10
+ mode=
11
+ ;;
12
--build-system|-b)
13
mode=build-system
14
;;
@@ -75,5 +78,11 @@ s2=$(sed -nr 's/^declare -x S="(.*)"/\1/p' "${PORTAGE_TMPDIR}"/portage/${cat2}/$
75
78
-name 'Cargo.toml' \
76
79
\) -printf "%f\n"
77
80
81
+ default)
82
+ find "${s1}" "${s2}" -type f \
83
+ \( \
84
+ -name 'searchindex.js' \
85
+ \) -printf "%f\n"
86
87
esac
88
} | diff --color=always --exclude=".git" --strip-trailing-cr -X - -dupNr "${s1}" "${s2}" | ${PAGER:-less}
0 commit comments