aves/scripts/pub_get_all.sh
2022-10-20 11:56:07 +02:00

13 lines
161 B
Bash
Executable file

#!/bin/bash
if [ ! -d "scripts" ]; then
cd ..
fi
flutter pub get
cd plugins || exit
for plugin in $(ls -d *); do
cd $plugin
flutter pub get
cd ..
done