mirror of https://github.com/jdx/mise
test: skip dotnet if not installed
This commit is contained in:
parent
82840eea0d
commit
1a663dd63e
|
@ -1,5 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if ! command -v dotnet >/dev/null 2>&1; then
|
||||
echo "dotnet is not installed"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
export MISE_EXPERIMENTAL=1
|
||||
|
||||
test() {
|
||||
|
|
Loading…
Reference in New Issue