From e41cfe92890a20f621206ecdf9699ff748fbc80f Mon Sep 17 00:00:00 2001 From: Lucas Manuel Rodriguez Date: Mon, 16 Sep 2024 11:40:29 -0300 Subject: [PATCH] Small fix to releaser.sh when releasing updates to timestamp (#22107) --- tools/tuf/releaser.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tuf/releaser.sh b/tools/tuf/releaser.sh index cf669577c2..a3eba3d273 100755 --- a/tools/tuf/releaser.sh +++ b/tools/tuf/releaser.sh @@ -321,8 +321,9 @@ print_reminder () { elif [[ $COMPONENT == "osqueryd" ]]; then prompt "Make sure to install fleetd with '--osqueryd-channel=stable' on a Linux, Windows and macOS VM. (To smoke test the release.)" fi - else + elif [[ $ACTION != "update-timestamp" ]]; then echo "Unsupported action: $ACTION" + exit 1 fi }