Skip to content

Commit 863d6ce

Browse files
dschogitster
authored andcommitted
ci: fix code style
In b92cb86 (travis-ci: check that all build artifacts are .gitignore-d, 2017-12-31), a function was introduced with a code style that is different from the surrounding code: it added the opening curly brace on its own line, when all the existing functions in the same file cuddle that brace on the same line as the function name. Let's make the code style consistent again. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f9b9594 commit 863d6ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/lib.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ skip_good_tree () {
6969
exit 0
7070
}
7171

72-
check_unignored_build_artifacts ()
73-
{
72+
check_unignored_build_artifacts () {
7473
! git ls-files --other --exclude-standard --error-unmatch \
7574
-- ':/*' 2>/dev/null ||
7675
{

0 commit comments

Comments
 (0)