Is there an existing issue for this?
Use case
I'm doing a setup script for other devs in my teams to help them setup/build/rebuild some nested flutter projects in local. For that I'm using a SH script as follows :
#!/bin/sh
flutter clean
cd ./some/dir/ || exit
flutter clean
cd ../.. || exit
flutter pub get --directory=.
flutter pub get --directory=./some/dir
dart run build_runner build --delete-conflicting-outputs
Could you please implement a --directory option directly in flutter clean to improve consistency between flutter cli commands ?
Proposal
#!/bin/sh
flutter clean --directory=./some/dir # working directory for the flutter clean command
Is there an existing issue for this?
Use case
I'm doing a setup script for other devs in my teams to help them setup/build/rebuild some nested flutter projects in local. For that I'm using a SH script as follows :
Could you please implement a --directory option directly in flutter clean to improve consistency between flutter cli commands ?
Proposal