aves/scripts/pub_get_all.sh
2022-11-26 12:18:57 +01:00

14 lines
177 B
Bash
Executable file

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