Compare commits

..

4 Commits

Author SHA1 Message Date
d0e6d9afab [CI SKIP] version and changelog update 2022-06-02 00:04:09 +02:00
3745566d15 fix(pipeline): fix git push parameters
Reviewed-on: #7
PR #7
2022-06-02 00:04:09 +02:00
51f9ab07a1 fix(pipeline): push version and changelog after update
Reviewed-on: #5
PR #5
2022-06-02 00:04:09 +02:00
6c65434abd fix(pipeline): fix image pull in pipeline
Reviewed-on: #4
PR #4
2022-06-02 00:04:09 +02:00
3 changed files with 3 additions and 10 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "0.1.1", "version": "0.1.0",
"sha": "dc2e644", "sha": "3fe3a2a",
"url": "https://git.riba-interactive.de/rick/waitui" "url": "https://git.riba-interactive.de/rick/waitui"
} }

View File

@ -6,13 +6,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---- ----
## [0.1.1](https://git.riba-interactive.de/rick/waitui/compare/3fe3a2a...dc2e644) (2022-06-01)
### Bug fixes 🩹
* **conventi:** fix `conventi.sh` function `get_commit_body()` ([dc2e644](https://git.riba-interactive.de/rick/waitui/commit/dc2e644))
## [0.1.0](https://git.riba-interactive.de/rick/waitui/compare/dafd1ae...3fe3a2a) (2022-06-01) ## [0.1.0](https://git.riba-interactive.de/rick/waitui/compare/dafd1ae...3fe3a2a) (2022-06-01)

View File

@ -170,7 +170,7 @@ get_commit_footer() {
} }
get_commit_body() { get_commit_body() {
pattern=$(get_commit_footer "$1" | head -n 1 | sed -e 's/[]\/$*.^[]/\\&/g') pattern=$(get_commit_footer "$1" | head -n 1)
if [ -n "$pattern" ]; then if [ -n "$pattern" ]; then
echo "$1" | sed -e "/$pattern/,\$d" echo "$1" | sed -e "/$pattern/,\$d"
else else