Skip to content

Commit 0474e37

Browse files
committed
Update gen-rel-notes.sh
1 parent fdbf8b5 commit 0474e37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gen-rel-notes.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/sh
22

3-
for d in `find . -not -path '*/.*' -type d -maxdepth 1`; do
3+
for d in `find ./ -not -path '*/.*' -type d -maxdepth 1 | cut -d '/' -f 2`; do
44
cd $d
55

6-
echo $d | cut -d "/" -f 2
6+
echo $d
77
git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline
88

99
cd ..

0 commit comments

Comments
 (0)