ci(e2e): fix install check (#1086)

This commit is contained in:
Felix Angelov
2023-08-10 15:46:32 -05:00
committed by GitHub
parent 24eac09838
commit 924e910e8f
+2 -2
View File
@@ -44,7 +44,7 @@ jobs:
- name: 🐦 Verify Shorebird Installation (macOS / Linux)
if: runner.os != 'Windows'
run: |
if [[ $(shorebird --version) =~ "Shorebird Engine • revision" ]]; then
if [[ $(shorebird --version) =~ "Engine • revision" ]]; then
echo '✅ Shorebird CLI is installed!'
else
echo '❌ Shorebird CLI is not installed.'
@@ -56,7 +56,7 @@ jobs:
if: runner.os == 'Windows'
run: |
$shorebird_version = shorebird --version
if ($shorebird_version -match "Shorebird Engine") {
if ($shorebird_version -match "Engine") {
Write-Output "✅ Shorebird CLI is installed!"
} else {
Write-Output "❌ Shorebird CLI is not installed."