Skip to content

Instantly share code, notes, and snippets.

@sergiocasero
Created April 6, 2022 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiocasero/42424f34c1ccb90de39f611e6f4227cb to your computer and use it in GitHub Desktop.
Save sergiocasero/42424f34c1ccb90de39f611e6f4227cb to your computer and use it in GitHub Desktop.
!#/bin/bash
for d in */ ; do
cd $d
if [ -f "pubspec.yaml" ]; then
echo "$d is a flutter project"
flutter clean
else
echo "$d is a gradle project"
./gradlew clean
fi
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment