We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4745e48 commit f670086Copy full SHA for f670086
README.md
@@ -2,7 +2,7 @@
2
3
[`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
4
5
-# GitHub Action 0.6.10
+# GitHub Action 0.6.11
6
7
This repository also provides the `tea` GitHub Action.
8
install.sh
@@ -204,6 +204,10 @@ welcome() {
204
get_tea_version() {
205
# shellcheck disable=SC2086
206
v="$(gum spin --show-output --title 'determing tea version' -- $CURL "https://dist.tea.xyz/tea.xyz/$MIDFIX/versions.txt" | tail -n1)"
207
+ if test -z "$v"; then
208
+ echo "failed to get latest tea version" >&2
209
+ exit 1
210
+ fi
211
}
212
213
fix_links() {
0 commit comments