1
0
mirror of https://github.com/Luzifer/github-publish.git synced 2024-09-18 23:42:56 +00:00

Fix: Use tool name

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2022-06-28 00:09:53 +02:00
parent ff36e63eaa
commit 88a19f1be9
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
05e4977d541b2ef07c757acca912b7b58b379fb425eceb3a1f53c829a78a4aa4 docker2aci.sh
159cebe6207975d84c8013ebc154819ca59802dec42c7b44c65be5ec0e56e8d2 golang.sh
7c1b355cb4501c5458052253093663bf9e2e5e9f95d4ce8e13b55e53072b0a70 golang.sh

View File

@ -19,7 +19,7 @@ function substep() {
required_tools=(go sha256sum tar zip)
for tool in "${required_tools[@]}"; do
(command -v apk 2>&1 1>/dev/null) || {
(command -v ${tool} 2>&1 1>/dev/null) || {
log "Missing tool '${tool}'"
exit 1
}