mirror of
https://github.com/golang-standards/project-layout.git
synced 2025-05-05 15:43:04 +00:00
On *nix systems it's a common convention to end a file with an empty newline. It also helps if the newline is present if user wants to simply cat a file in the command line. I used the following one-liner to automatically add newlines in all files that don't have it: $ find . -path ./.git -prune -o -type f -a ! -name .keep -exec sh -c '[[ $(tail -c1 "$1" | wc -l) -gt 0 ]] || echo >> "$1"' sh {} \;
12 lines
338 B
Markdown
12 lines
338 B
Markdown
# `/scripts`
|
|
|
|
Scripts to perform various build, install, analysis, etc operations.
|
|
|
|
These scripts keep the root level Makefile small and simple.
|
|
|
|
Examples:
|
|
|
|
* https://github.com/kubernetes/helm/tree/master/scripts
|
|
* https://github.com/cockroachdb/cockroach/tree/master/scripts
|
|
* https://github.com/hashicorp/terraform/tree/master/scripts
|