Skip to content

Commit

Permalink
test: skip dotnet if not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 23, 2024
1 parent 82840ee commit 1a663dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions e2e/backend/test_dotnet
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down

0 comments on commit 1a663dd

Please sign in to comment.