details:   https://code.tryton.org/tools/maintenance/commit/58b19406854b
branch:    default
user:      Cédric Krier <[email protected]>
date:      Mon Dec 15 21:42:48 2025 +0100
description:
        Ignore directories starting with .
diffstat:

 do_major_release |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 033ab2d9f982 -r 58b19406854b do_major_release
--- a/do_major_release  Sat May 10 10:24:39 2025 +0200
+++ b/do_major_release  Mon Dec 15 21:42:48 2025 +0100
@@ -23,7 +23,7 @@
 
 tags=()
 versions=()
-filenames=$(find . -name setup.py -not -path "*/cookiecutter-module/*" -o 
-name package.json -not -path "*/node_modules/*" -not -path 
"*/bower_components/*")
+filenames=$(find . -name setup.py -not -path "*/cookiecutter-module/*" -not 
-path "*/.*/*" -o -name package.json -not -path "*/node_modules/*" -not -path 
"*/bower_components/*")
 for filename in ${filenames}; do
     cd "$(dirname $filename)"
     echo "prepare $(basename $(pwd))"

Reply via email to