Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit e68214d

Browse files
author
Emmanuel Garcia
committed
Fix script
1 parent 043b2b5 commit e68214d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/incremental_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ PLUGIN_SHARDING=($PLUGIN_SHARDING)
4343

4444
if [[ "${BRANCH_NAME}" == "master" ]]; then
4545
echo "Running for all packages"
46-
(cd "$REPO_DIR" && $PUB global run flutter_plugin_tools "${ACTIONS[@]}" ${PLUGIN_SHARDING[@]}) --enable-experiment=non-nullable
46+
(cd "$REPO_DIR" && $PUB global run flutter_plugin_tools "${ACTIONS[@]}" ${PLUGIN_SHARDING[@]} --enable-experiment=non-nullable)
4747
else
4848
# Sets CHANGED_PACKAGES
4949
check_changed_packages
5050

5151
if [[ "$CHANGED_PACKAGES" == "" ]]; then
5252
echo "No changes detected in packages."
5353
echo "Running for all packages"
54-
(cd "$REPO_DIR" && $PUB global run flutter_plugin_tools "${ACTIONS[@]}" ${PLUGIN_SHARDING[@]}) --enable-experiment=non-nullable
54+
(cd "$REPO_DIR" && $PUB global run flutter_plugin_tools "${ACTIONS[@]}" ${PLUGIN_SHARDING[@]} --enable-experiment=non-nullable)
5555
else
5656
echo running "${ACTIONS[@]}"
5757
(cd "$REPO_DIR" && $PUB global run flutter_plugin_tools "${ACTIONS[@]}" --plugins="$CHANGED_PACKAGES" ${PLUGIN_SHARDING[@]})

0 commit comments

Comments
 (0)