We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 011dec1 commit 13e5774Copy full SHA for 13e5774
1 file changed
auto-update.sh
@@ -76,9 +76,7 @@ docset_version() {
76
77
local hash; hash=$(
78
cd "$docset" 2>/dev/null || { echo ""; exit 0; }
79
- find . -type f \
80
- -not -name '.DS_Store' \
81
- -not -name '*.dsidx' \
+ find . -type f ! -name '.DS_Store' ! -name '*.dsidx' \
82
-print0 | LC_ALL=C sort -z | xargs -0 md5sum | md5sum | cut -c1-6
83
)
84
[[ -n "$hash" ]] || { echo ""; return 0; }
0 commit comments