File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4
4
@go test ./...
5
5
6
6
build : test
7
- export CGO_ENABLED=0 export GOOS=linux && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.3 .2' -o repo_info_extractor_linux
8
- export CGO_ENABLED=0 export GOOS=darwin && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.3 .2' -o repo_info_extractor_osx
9
- export CGO_ENABLED=0 export GOOS=windows && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.3 .2' -o repo_info_extractor_windows.exe
7
+ export CGO_ENABLED=0 export GOOS=linux && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.4 .2' -o repo_info_extractor_linux
8
+ export CGO_ENABLED=0 export GOOS=darwin && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.4 .2' -o repo_info_extractor_osx
9
+ export CGO_ENABLED=0 export GOOS=windows && export GOARCH=amd64 && go build -a -tags netgo -ldflags ' -w -X main.version=v2.4 .2' -o repo_info_extractor_windows.exe
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ func (r *RepoExtractor) initAnalyzers() {
164
164
librarydetection .AddAnalyzer ("Perl" , languages .NewPerlAnalyzer ())
165
165
librarydetection .AddAnalyzer ("PHP" , languages .NewPHPAnalyzer ())
166
166
librarydetection .AddAnalyzer ("Python" , languages .NewPythonScriptAnalyzer ())
167
+ librarydetection .AddAnalyzer ("R" , languages .NewRAnalyzer ())
167
168
librarydetection .AddAnalyzer ("Ruby" , languages .NewRubyScriptAnalyzer ())
168
169
librarydetection .AddAnalyzer ("Rust" , languages .NewRustAnalyzer ())
169
170
librarydetection .AddAnalyzer ("Swift" , languages .NewSwiftAnalyzer ())
You can’t perform that action at this time.
0 commit comments