Skip to content

Instantly share code, notes, and snippets.

@PlugFox
Last active May 11, 2024 00:27
Show Gist options
  • Save PlugFox/89dc70c047de5df665d53cff5114deaa to your computer and use it in GitHub Desktop.
Save PlugFox/89dc70c047de5df665d53cff5114deaa to your computer and use it in GitHub Desktop.
Repair and wipe Flutter

Wipe all flutter data

nohup bash -c 'rm -rf ~/.pub-cache $PUB_CACHE \
  && cd $(dirname -- $(which flutter)) \
  && git clean -fdx \
  && (yes | flutter doctor --android-licenses)' > /dev/null 2>&1 & 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment