6 lines
252 B
Bash
Executable File
6 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
go install github.com/google/go-licenses@latest
|
|
go-licenses report ./... --template .github/licenses.tmpl > third-party-licenses.md || echo "Ignore warnings"
|
|
go-licenses save ./... --save_path=third-party --force || echo "Ignore warnings"
|