summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-07-26 19:47:29 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-07-26 19:47:29 -0400
commitccc84f329bd5c98b25a85422a0cf4e9b18324082 (patch)
treea00d0a1ce78ba34c6fc8a5c45d3524d88fb11cdc
parent5ae99da29594cce5964c323e79a6e7632272f6ae (diff)
librerelease: also hide .lock files when pretty printingtesting-20140726
It already ignores them when actually working
-rwxr-xr-xsrc/abslibre-tools/librerelease2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abslibre-tools/librerelease b/src/abslibre-tools/librerelease
index 6b7da5f..466ace4 100755
--- a/src/abslibre-tools/librerelease
+++ b/src/abslibre-tools/librerelease
@@ -182,7 +182,7 @@ pretty_print_packages() {
while read -r path; do
msg2 "${path##*/}"
cd "$path"
- find -L . -type f | sed 's|^\./| |' | sort
+ find -L . -type f -not -name '*.lock' | sed 's|^\./| |' | sort
done
}