Skip to content

Commit dbf54f6

Browse files
printf debugging
1 parent 89e9bbd commit dbf54f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tool/flutter_ci_script_shared.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function ci_projects () {
55
local arr=("$@")
66
for PROJECT_NAME in "${arr[@]}"
77
do
8-
echo "== Testing '${PROJECT_NAME}' on Flutter's $channel channel =="
8+
echo "== Testing '${PROJECT_NAME}' on Flutter's $channel channel using $RUNNER_OS =="
99
pushd "${PROJECT_NAME}"
1010

1111
# Grab packages.
@@ -21,7 +21,7 @@ function ci_projects () {
2121
if [ -d "test" ]
2222
then
2323
# Skip vertex_ai_firebase_flutter_app on Windows
24-
if [ $PROJECT_NAME = "vertex_ai_firebase_flutter_app" ] && [ $RUNNER_OS = 'Windows' ]; then
24+
if [ $PROJECT_NAME = 'vertex_ai_firebase_flutter_app' ] && [ $RUNNER_OS = 'Windows' ]; then
2525
echo "Skipping $PROJECT_NAME on $RUNNER_OS"
2626
else
2727
if grep -q "flutter:" "pubspec.yaml"; then

0 commit comments

Comments
 (0)