mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	travis: fix clang-format lint
This commit is contained in:
		
							parent
							
								
									d5d2ca8058
								
							
						
					
					
						commit
						6e5e5be736
					
				@ -17,7 +17,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
 | 
					    if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
 | 
				
			||||||
        # Get list of every file modified in this pull request
 | 
					        # Get list of every file modified in this pull request
 | 
				
			||||||
        files_to_lint="$(git diff --name-only --diff-filter=ACMRTUXB $TRAVIS_COMMIT_RANGE | grep '^src/[^.]*[.]\(cpp\|h\)$')"
 | 
					        files_to_lint="$(git diff --name-only --diff-filter=ACMRTUXB $TRAVIS_COMMIT_RANGE | grep '^src/[^.]*[.]\(cpp\|h\)$' || true)"
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
        # Check everything for branch pushes
 | 
					        # Check everything for branch pushes
 | 
				
			||||||
        files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')"
 | 
					        files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')"
 | 
				
			||||||
@ -27,7 +27,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then
 | 
				
			|||||||
    set +x
 | 
					    set +x
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for f in $files_to_lint; do
 | 
					    for f in $files_to_lint; do
 | 
				
			||||||
        d=$(diff -u "$f" <($CLANG_FORMAT "$f"))
 | 
					        d=$(diff -u "$f" <($CLANG_FORMAT "$f") || true)
 | 
				
			||||||
        if ! [ -z "$d" ]; then
 | 
					        if ! [ -z "$d" ]; then
 | 
				
			||||||
            echo "!!! $f not compliant to coding style, here is the fix:"
 | 
					            echo "!!! $f not compliant to coding style, here is the fix:"
 | 
				
			||||||
            echo "$d"
 | 
					            echo "$d"
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user