Skip to content

Bump to 8.26 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHECKSTYLE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.25
8.26
3 changes: 2 additions & 1 deletion bin/install-checkstyle.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/sh

# use `make upgrade` to update this URL to the latest version
URL='https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.25/checkstyle-8.25-all.jar'
URL='https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.26/checkstyle-8.26-all.jar'


wget -O /usr/local/bin/checkstyle.jar $URL
2 changes: 1 addition & 1 deletion bin/scrape-docs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ issue_content = {}
CHECKSTYLE_VERSION = File.read('CHECKSTYLE_VERSION').chomp

if !Dir.exists? "data/"
system "git clone https://github.com/checkstyle/checkstyle.git data/" or raise "clone failed"
system "git clone --shallow-since=2019-01-01 https://github.com/checkstyle/checkstyle.git data/" or raise "clone failed"
end

system "cd data && git checkout master 1>/dev/null 2>/dev/null && git pull origin master 1>/dev/null 2>/dev/null" or raise "pull failed"
Expand Down
Loading