A simple python script to make it easy to execute flutter commands on multiple unrelated projects.
- Install python (https://www.python.org/)
- Download or clone this project.
- Install dependencies
pip install -r requirements.txt
- Copy `flupy.py' to the root folder that contains your projects and excute the commands.
python3 flupy.py --help
python3 flupy.py clean <directory> # cleans all flutter projects build directories in <directory.
python3 flupy.py get . # runs `flutter pub get` in all flutter projects in under current directory
# if you are on windows use:
python flupy.py clean <dir>