ci(e2e): fix install check (#1086)
This commit is contained in:
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user