mirror of
https://github.com/Maks1mS/devcontainers-features.git
synced 2024-12-23 15:52:59 +03:00
10 lines
212 B
Bash
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
|