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 fdbf8b5 commit 0474e37Copy full SHA for 0474e37
gen-rel-notes.sh
@@ -1,9 +1,9 @@
1
#!/bin/sh
2
3
-for d in `find . -not -path '*/.*' -type d -maxdepth 1`; do
+for d in `find ./ -not -path '*/.*' -type d -maxdepth 1 | cut -d '/' -f 2`; do
4
cd $d
5
6
- echo $d | cut -d "/" -f 2
+ echo $d
7
git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline
8
9
cd ..
0 commit comments