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

Commit f84205b

Browse files
committed
Exclude video_player_platform_interface
1 parent fae8db7 commit f84205b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

script/build_all_plugins_app.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ readonly REPO_DIR="$(dirname "$SCRIPT_DIR")"
1010
source "$SCRIPT_DIR/common.sh"
1111
check_changed_packages > /dev/null
1212

13-
(cd "$REPO_DIR" && pub global run flutter_plugin_tools all-plugins-app --exclude instrumentation_adapter,url_launcher_platform_interface)
13+
readonly EXCLUDED_PLUGINS_LIST=(
14+
"instrumentation_adapter"
15+
"url_launcher_platform_interface"
16+
"google_sign_in_platform_interface"
17+
"video_player_platform_interface"
18+
)
19+
# Comma-separated string of the list above
20+
readonly EXCLUDED=$(IFS=, ; echo "${EXCLUDED_PLUGINS_LIST[*]}")
21+
22+
(cd "$REPO_DIR" && pub global run flutter_plugin_tools all-plugins-app --exclude $EXCLUDED)
1423

1524
function error() {
1625
echo "$@" 1>&2

0 commit comments

Comments
 (0)