Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 691 Bytes

File metadata and controls

21 lines (17 loc) · 691 Bytes

flutter-directories-cli

A simple python script to make it easy to execute flutter commands on multiple unrelated projects.

  1. Install python (https://www.python.org/)
  2. Download or clone this project.
  3. Install dependencies
    pip install -r requirements.txt
  4. Copy `flupy.py' to the root folder that contains your projects and excute the commands.

How to use the script

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>