I recently asked this question about Flutter. Currently, the answer now gives a different error and, as the answer states, I might want to look at this segment of the code. So, I decide to fork the repo and begin my investigation. I currently just want to print out a couple of values in the section to figure out what is going on. To see what the program thinks I have, and what it doesn't think I have. I added a couple of printTrace
statements and now I want to rebuild the project.
I went to CONTRIBUTING.md
and found this:
The flutter tools itself is built when you run
flutter
for the first time and each time you runflutter upgrade
. If you want to alter and re-test the tool's behavior itself, locally commit your tool changes in git and the tool will be rebuilt from Dart sources inpackages/flutter_tools
the next time you runflutter
.
I don't want to exactly "change" anything at the moment, just print out some values and figure out what is going on. The issue is, doing these debugging changes forces me to do a commit. Is there a way to rebuild flutter tools without making a commit?