10 lines
119 B
Bash
Executable file
10 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
cd ..
|
|
flutter pub get
|
|
cd plugins
|
|
for plugin in $(ls -d *); do
|
|
cd $plugin
|
|
flutter pub get
|
|
cd ..
|
|
done
|
|
|