Skip to content

Commit b43257a

Browse files
authored
Makefile: clean target: remove .vendor, .bundle, Gemfile.lock
Clean up: 1. `.vendor` directory where Bundler installs all the gems. 2. `.bundle` directory where Bundler stores its settings. 3. `Gemfile.lock` file generated by the Bundler.
1 parent 4e81182 commit b43257a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ clean :
6868
@rm -rf ${DST}
6969
@rm -rf .sass-cache
7070
@rm -rf bin/__pycache__
71+
@rm -rf .vendor
72+
@rm -rf .bundle
73+
@rm -f Gemfile.lock
7174
@find . -name .DS_Store -exec rm {} \;
7275
@find . -name '*~' -exec rm {} \;
7376
@find . -name '*.pyc' -exec rm {} \;

0 commit comments

Comments
 (0)