Skip to content

Commit

Permalink
Merge pull request #15066 from mpagot/make_test_fixes
Browse files Browse the repository at this point in the history
Add --no-pager to some git commands used during make test
  • Loading branch information
perlpunk committed Jul 4, 2022
2 parents 6531b94 + 6c81acc commit 3ff228e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/check_code_style
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ fail() {
exit 1
}

git grep -P 'check_screen.*00(?!.*nocheck:)' || exit 0
git --no-pager grep -P 'check_screen.*00(?!.*nocheck:)' || exit 0
fail "See https://github.com/os-autoinst/os-autoinst-distri-opensuse/blob/master/CONTRIBUTING.md#coding-style for more details"
2 changes: 1 addition & 1 deletion tools/print_status_all_bugrefs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh -e
git grep -l '\(boo\|bsc\)#' | xargs sed -n 's/^.*\(bsc\|boo\)#\([0-9]\+\).*$/\2/gp' | grep -v '123456' | sort -n | uniq | sort -n | $(dirname $0)/check_bugrefs
git --no-pager grep -l '\(boo\|bsc\)#' | xargs sed -n 's/^.*\(bsc\|boo\)#\([0-9]\+\).*$/\2/gp' | grep -v '123456' | sort -n | uniq | sort -n | $(dirname $0)/check_bugrefs

0 comments on commit 3ff228e

Please sign in to comment.