mirror of
https://github.com/Luzifer/github-publish.git
synced 2024-11-09 14:50:07 +00:00
Fix: Use tool name
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
ff36e63eaa
commit
88a19f1be9
2 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
||||||
05e4977d541b2ef07c757acca912b7b58b379fb425eceb3a1f53c829a78a4aa4 docker2aci.sh
|
05e4977d541b2ef07c757acca912b7b58b379fb425eceb3a1f53c829a78a4aa4 docker2aci.sh
|
||||||
159cebe6207975d84c8013ebc154819ca59802dec42c7b44c65be5ec0e56e8d2 golang.sh
|
7c1b355cb4501c5458052253093663bf9e2e5e9f95d4ce8e13b55e53072b0a70 golang.sh
|
||||||
|
|
|
@ -19,7 +19,7 @@ function substep() {
|
||||||
required_tools=(go sha256sum tar zip)
|
required_tools=(go sha256sum tar zip)
|
||||||
|
|
||||||
for tool in "${required_tools[@]}"; do
|
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}'"
|
log "Missing tool '${tool}'"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue