From ebc266c2f69da315a2e8e6d59914d6522cbfe7de Mon Sep 17 00:00:00 2001 From: piotradamczyk5 <65554637+piotradamczyk5@users.noreply.github.com> Date: Mon, 10 Aug 2020 14:48:43 +0200 Subject: [PATCH 1/3] Update DeleteOldRelease.kt --- .../main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt b/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt index 8558e026c7..b5dc24b7c7 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt @@ -14,6 +14,6 @@ class DeleteOldReleaseCommand : CliktCommand(name = "deleteOldRelease", help = " } } -fun deleteOldRelease(tag: String) = "$DELETE_RELEASE_COMMAND \"$tag\"".runCommand() +fun deleteOldRelease(tag: String) = "$DELETE_RELEASE_COMMAND $tag\".runCommand() private const val DELETE_RELEASE_COMMAND = "hub release delete" From bba019adad07c0f650b2e24748a71a580738bd51 Mon Sep 17 00:00:00 2001 From: piotradamczyk5 <65554637+piotradamczyk5@users.noreply.github.com> Date: Mon, 10 Aug 2020 14:51:33 +0200 Subject: [PATCH 2/3] Update release_notes.md --- release_notes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release_notes.md b/release_notes.md index 9596f7d08e..40c8d78808 100644 --- a/release_notes.md +++ b/release_notes.md @@ -6,6 +6,7 @@ - [#935](https://github.com/Flank/flank/pull/935) Process junit xml even when full junit is not enabled. ([kozaxinan](https://github.com/kozaxinan)) - [#962](https://github.com/Flank/flank/pull/962) Make table text left aligned. ([pawelpasterz](https://github.com/pawelpasterz)) - [#965](https://github.com/Flank/flank/pull/965) Fast fail when full-junit-result and legacy-junit-result. ([adamfilipow92](https://github.com/adamfilipow92)) +- [#970](https://github.com/Flank/flank/pull/970) Fixing Flood of snapshot releases. ([piotradamczyk5](https://github.com/piotradamczyk5)) - - From ceadf5affe9887a4cb4736aa3a03ea0b64805798 Mon Sep 17 00:00:00 2001 From: Piotr Adamczyk Date: Mon, 10 Aug 2020 14:55:32 +0200 Subject: [PATCH 3/3] Fixing typo --- .../main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt b/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt index b5dc24b7c7..184854ec7b 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/release/hub/DeleteOldRelease.kt @@ -14,6 +14,6 @@ class DeleteOldReleaseCommand : CliktCommand(name = "deleteOldRelease", help = " } } -fun deleteOldRelease(tag: String) = "$DELETE_RELEASE_COMMAND $tag\".runCommand() +fun deleteOldRelease(tag: String) = "$DELETE_RELEASE_COMMAND $tag".runCommand() private const val DELETE_RELEASE_COMMAND = "hub release delete"