File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,11 +96,11 @@ runs:
9696 run : |
9797 dotnet tool restore
9898
99- if dotnet tool list --local | grep dotnet-stryker ; then
100- echo "Required tool 'dotnet-stryker' was restored"
99+ if dotnet tool list --local | grep -q dotnet-stryker ; then
100+ echo "✅ Required tool 'dotnet-stryker' was restored"
101101 else
102- echo "Required tool 'dotnet-stryker' was not restored. Installing the latest version..."
103- echo "To optimize this step, install dotnet-stryker via manifest https://stryker-mutator.io/docs/stryker-net/getting-started/#install-in-project"
102+ echo "⚠️ Required tool 'dotnet-stryker' was not restored. Installing the latest version..."
103+ echo "💡 To optimize this step, install dotnet-stryker via manifest https://stryker-mutator.io/docs/stryker-net/getting-started/#install-in-project"
104104
105105 dotnet tool install dotnet-stryker --global
106106 fi
You can’t perform that action at this time.
0 commit comments