aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/build/linux_gen.sh
Commit message (Collapse)AuthorAgeFilesLines
* all: replace egrep with grep -EAndrew Donnellan2025-12-101-1/+1
| | | | | | | | | | The egrep command has been deprecated in GNU Grep since 2007, and nowadays using egrep rather than grep -E will print a warning to the user, which is very annoying. Replace all usages of egrep with grep -E. Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
* tools/create-gce-image.sh: setup ssh with empty passwordDmitry Vyukov2021-01-291-1/+1
| | | | | | We used to use ssh keys, but there are no partiuclar advantages of using key over empty password. It just makes things more complex. And the new image building code in pkg/build does not support keys.
* pkg/build, pkg/html: make bash path OS compatibletigergao992020-10-301-1/+1
|
* pkg/build, pkg/html: move generation logic into separate scriptsDmitry Vyukov2020-09-151-0/+11
Mentions of "// Code generated ... DO NOT EDIT." in these Go files somehow prevents golangci-lint from checking them. And github treats them as auto-generated as well. I guess some code somewhere has some imprecise heuristics. Move generation into separate shell scripts. Also cleaner.