We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7dff49 commit 0f58e58Copy full SHA for 0f58e58
scripts/dependencies_check.sh
@@ -10,7 +10,7 @@ function check_dependencies() {
10
YQ_BIN=$LOCAL_YQ
11
else
12
# Check if yq is installed
13
- YQ_BIN=$(which yq 2>/dev/null)
+ YQ_BIN=$(which yq 2>/dev/null || true)
14
fi
15
if [ -z "$YQ_BIN" ]; then
16
echo "Error: 'yq' is not installed or not in PATH."
@@ -80,4 +80,4 @@ function install_yq() {
80
81
echo "Error: Unable to install 'yq' for any of the supported architectures."
82
exit 1
83
-}
+}
0 commit comments