You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
(cd "$REPO_DIR"&&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
52
+
(cd "$REPO_DIR"&&activate_plugin_tool &&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
59
53
else
60
54
# Sets CHANGED_PACKAGES
61
55
check_changed_packages
62
56
63
57
if [[ "$CHANGED_PACKAGES"=="" ]];then
64
58
echo"No changes detected in packages."
65
59
echo"Running for all packages"
66
-
(cd "$REPO_DIR"&&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
60
+
(cd "$REPO_DIR"&&activate_plugin_tool &&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
67
61
else
68
62
echo running "${ACTIONS[@]}"
69
-
(cd "$REPO_DIR"&&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --plugins="$CHANGED_PACKAGES" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
63
+
(cd "$REPO_DIR"&&activate_plugin_tool &&$PUB global run flutter_plugin_tools "${ACTIONS[@]}" --plugins="$CHANGED_PACKAGES" --exclude="$ALL_EXCLUDED"${PLUGIN_SHARDING[@]})
70
64
echo"Running version check for changed packages"
71
65
# TODO(egarciad): Enable this check once in master.
72
66
# (cd "$REPO_DIR" && $PUB global run flutter_plugin_tools version-check --base_sha="$(get_branch_base_sha)")
0 commit comments