We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5234e1b commit 37f85adCopy full SHA for 37f85ad
2 files changed
README.md
@@ -3,7 +3,7 @@
3
* [`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
4
* This repository also provides the `tea` GitHub Action.
5
6
-# GitHub Action 0.15.0
+# GitHub Action 0.15.1
7
8
```yaml
9
- uses: teaxyz/setup@v0
install.sh
@@ -443,7 +443,7 @@ check_shell_magic() {
443
return 1
444
esac
445
446
- if command -v grep >/dev/null 2>&1 && grep --fixed-strings "$__TEA_ONE_LINER" "$__TEA_SH_FILE" --silent; then
+ if test -f "__TEA_SH_FILE" && command -v grep >/dev/null && grep --fixed-strings "$__TEA_ONE_LINER" "$__TEA_SH_FILE" --silent; then
447
# shell magic already installed
448
return 0
449
fi
0 commit comments