mirror of
https://github.com/dokku/dokku.git
synced 2025-12-28 16:06:40 +01:00
[ci skip] do not count blank lines
This commit is contained in:
6
Makefile
6
Makefile
@@ -106,11 +106,11 @@ endif
|
||||
|
||||
count:
|
||||
@echo "Core lines:"
|
||||
@cat dokku bootstrap.sh | wc -l
|
||||
@cat dokku bootstrap.sh | egrep -v "^$$" | wc -l
|
||||
@echo "Plugin lines:"
|
||||
@find plugins -type f | xargs cat | wc -l
|
||||
@find plugins -type f | xargs cat | egrep -v "^$$" | wc -l
|
||||
@echo "Test lines:"
|
||||
@find tests -type f | xargs cat | wc -l
|
||||
@find tests -type f | xargs cat | egrep -v "^$$" |wc -l
|
||||
|
||||
dokku-installer:
|
||||
apt-get install -qq -y ruby
|
||||
|
||||
Reference in New Issue
Block a user