File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ tools/vagrant/.vagrant/
1111.run /
1212# Visual Studio Code
1313.vscode /
14+ .local /
1415# Bazel
1516/bazel- *
1617# vi swap files
@@ -40,6 +41,7 @@ coverage.out
4041# build artifacts
4142* .so
4243* .o
44+ * .o.tmp
4345
4446kernel /** /* .ko
4547kernel /** /* .cmd
Original file line number Diff line number Diff line change 1+ linux-bpf.h
Original file line number Diff line number Diff line change @@ -33,5 +33,9 @@ install_shell_format
3333shfmt -w -s -ln=bash ./
3434
3535if [ -z " $GITHUB_ACTIONS " ]; then
36- docker run -u 0 -w /workspace -v " $PWD " :/workspace davidanson/markdownlint-cli2:v0.18.1 " **/*.md" " --fix"
36+ docker run --rm \
37+ -v " $PWD " :/workspace \
38+ -w /workspace \
39+ davidanson/markdownlint-cli2:v0.18.1 \
40+ markdownlint-cli2 --fix " **/*.md"
3741fi
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ function install_libboundscheck() {
1212}
1313
1414function dependency_pkg_install() {
15-
1615 if command -v apt > /dev/null; then
1716 echo " Checking for required packages on a Debian-based system..."
1817
You can’t perform that action at this time.
0 commit comments