diff --git a/cpmfile.json b/cpmfile.json index 668ffec49c..b2ea69c36e 100644 --- a/cpmfile.json +++ b/cpmfile.json @@ -4,7 +4,7 @@ "package": "OpenSSL", "name": "openssl", "repo": "crueter-ci/OpenSSL", - "version": "3.6.0-965d6279e8", + "version": "3.6.0-1cb0d36b39", "min_version": "1.1.1" }, "boost": { diff --git a/externals/cpmfile.json b/externals/cpmfile.json index 56040bdb23..4cb5ef6855 100644 --- a/externals/cpmfile.json +++ b/externals/cpmfile.json @@ -23,7 +23,7 @@ "package": "sirit", "name": "sirit", "repo": "eden-emulator/sirit", - "version": "1.0.3" + "version": "1.0.4" }, "httplib": { "repo": "yhirose/cpp-httplib", diff --git a/tools/cpm/package/util/fix-hash.sh b/tools/cpm/package/util/fix-hash.sh index e142428f75..07b9d266dd 100755 --- a/tools/cpm/package/util/fix-hash.sh +++ b/tools/cpm/package/util/fix-hash.sh @@ -13,7 +13,7 @@ [ "$HASH_URL" = null ] || exit 0 [ "$HASH_SUFFIX" = null ] || exit 0 -[ "$HASH" != null ] || echo "-- * Package has no hash specified" && exit 0 +[ "$HASH" != null ] || { echo "-- * Package has no hash specified" && exit 0; } ACTUAL=$("$SCRIPTS"/util/url-hash.sh "$DOWNLOAD") diff --git a/tools/cpm/package/vars.sh b/tools/cpm/package/vars.sh index b7e76ac047..07f4883ddf 100755 --- a/tools/cpm/package/vars.sh +++ b/tools/cpm/package/vars.sh @@ -9,7 +9,7 @@ value() { echo "$JSON" | jq -r ".$1" } -[ -n "$PACKAGE" ] || echo "Package was not specified" && exit 0 +[ -n "$PACKAGE" ] || { echo "Package was not specified" && exit 0; } # shellcheck disable=SC2153 JSON=$(echo "$PACKAGES" | jq -r ".\"$PACKAGE\" | select( . != null )")