Skip to content

Commit

Permalink
Tidy up GH lint output
Browse files Browse the repository at this point in the history
The GH Actions checkout doesn't normally include tags or history,
presumably for speed. We don't care for linting, but we don't need
errors.

GMake likes to print a lot of messages about entering and leaving
directories, which are not helpful here.
  • Loading branch information
amrc-benmorrow committed Apr 24, 2024
1 parent 448e395 commit c709267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
version: '3.6.3' # Specify the Helm version you want to use

- name: Run lint
run: make lint
run: make --no-print-directory lint
2 changes: 1 addition & 1 deletion mk/acs.git.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ifndef .acs.git.mk
.acs.git.mk=1

git.tag!=git describe --tags --abbrev=0
git.tag!=git describe --tags --abbrev=0 2>/dev/null
git.sha!=git rev-parse --verify HEAD

.PHONY: git.prepare git.check-committed git.pull amend
Expand Down

0 comments on commit c709267

Please sign in to comment.