16 lines
643 B
Bash
Executable File
16 lines
643 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2024 kornes <https://github.com/kornes>
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
dependencies="$(jq -r -c '.dependencies[] | if type == "string" then . else .name end' vcpkg.json)"
|
|
dependencies+=" openssl"
|
|
baseline="$(jq -r -c '."builtin-baseline"' vcpkg.json)"
|
|
|
|
for dependency_name in $dependencies; do
|
|
dependency_url="https://raw.githubusercontent.com/microsoft/vcpkg/${baseline}/ports/${dependency_name}/vcpkg.json"
|
|
dependency_version="$(curl -s "$dependency_url" | jq -rc '.version')"
|
|
echo "Dependency $dependency_name is at version '$dependency_version' in baseline $baseline"
|
|
done
|