Improve uncrust script
This commit is contained in:
		
				
					committed by
					
						
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							2059c6e4d0
						
					
				
				
					commit
					84a2746d05
				
			@@ -6,11 +6,12 @@
 | 
				
			|||||||
TMPDIR=`mktemp -d`
 | 
					TMPDIR=`mktemp -d`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Reformat a single file to tmp/
 | 
					# Reformat a single file to tmp/
 | 
				
			||||||
uncrustify -l CPP -c ./buildroot/share/extras/uncrustify.cfg -f "$1" >$TMPDIR/uncrustify.out
 | 
					if uncrustify -l CPP -c ./buildroot/share/extras/uncrustify.cfg -f "$1" >$TMPDIR/uncrustify.out ; then
 | 
				
			||||||
 | 
					  cp "$TMPDIR/uncrustify.out" "$1"  ; # Replace the original file
 | 
				
			||||||
# Replace the original file
 | 
					else
 | 
				
			||||||
cp "$TMPDIR/uncrustify.out" "$1"
 | 
					  echo "Something went wrong with uncrustify."
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Clean up, deliberately
 | 
					# Clean up, deliberately
 | 
				
			||||||
rm "$TMPDIR/uncrustify.out"
 | 
					[[ -f "$TMPDIR/uncrustify.out" ]] && rm "$TMPDIR/uncrustify.out"
 | 
				
			||||||
rmdir "$TMPDIR"
 | 
					rmdir "$TMPDIR"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user