ftomassetti / LangSandbox

Project to illustrate how to build a programming language
Apache License 2.0
694 stars 90 forks source link

Fixes gradle wrapper issue #2

Closed geoand closed 8 years ago

geoand commented 8 years ago

The project as it currently stands is missing the gradle-wrapper.jar The jar file is needed in order to run the build without having Gradle locally installed. The root cause of the omission is that the *.jar rule in .gitignore covers the gradle jar file as well. This commit adds an exception to .gitignore that allows the inclusion of the aformentioned file

This commit should probably be cherry-picked into the other branches as well

ftomassetti commented 8 years ago

Thanks. We do not have other branches, we tagged instead certain points in the development so Ideally I should move this commit back in the history I think.

geoand commented 8 years ago

You are welcome!

Yes, rearranging the commit history sounds the best move :)!