From a8924ac4fee2aeae741fe7765b10fd988ecab30a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 25 Aug 2023 16:11:28 +0200 Subject: [PATCH] fix: setup-runtime portability --- bin/setup-runtime | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup-runtime b/bin/setup-runtime index 4ae41b7c..b02e3177 100755 --- a/bin/setup-runtime +++ b/bin/setup-runtime @@ -52,7 +52,7 @@ china) esac -if ! command -v curl &> /dev/null && command -v apk &> /dev/null; then +if ! command -v curl > /dev/null && command -v apk > /dev/null; then apk add --no-cache curl fi