devcontainers-features/test/wine/wine_specified_version.sh
2023-10-11 08:00:24 +00:00

10 lines
212 B
Bash

#!/bin/bash
set -e
source dev-container-features-test-lib
check "wine exists" bash -c "wine --version"
check "wine version is same" bash -c "[[ "$(wine --version | tr -d -c 0-9.)" == *"8.5"* ]]"
reportResults