mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-07 21:40:30 +00:00
Emit warning if tool is not specified
If you encounter this warning, it may be due to a dependabot bug that handles `@<tool>` shorthand in wrong way. Previously, the handling of this case was platform-dependent and may or may not have resulted in an error.
This commit is contained in:
6
main.sh
6
main.sh
@@ -419,6 +419,12 @@ if ! type -P jq &>/dev/null || ! type -P curl &>/dev/null || ! type -P tar &>/de
|
||||
esac
|
||||
fi
|
||||
|
||||
if [[ ${#tools[@]} -eq 0 ]]; then
|
||||
warn "no tool specified; this may caused by dependabot bug that handles '@<tool>' shorthand in wrong way"
|
||||
# Exit with 0 for backward compatibility, we want to reject it in the next major release.
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for tool in "${tools[@]}"; do
|
||||
if [[ "${tool}" == *"@"* ]]; then
|
||||
version="${tool#*@}"
|
||||
|
||||
Reference in New Issue
Block a user