mirror of
https://github.com/Maks1mS/devcontainers-features.git
synced 2024-12-24 00:02:58 +03:00
9 lines
163 B
Bash
9 lines
163 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
source dev-container-features-test-lib
|
||
|
|
||
|
check "wine version is same" [[ "$(wine --version | tr -d -c 0-9.)" == *"8.5"* ]]
|
||
|
check
|
||
|
|
||
|
reportResults
|