16 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
 | |
| 
 | |
| if [[ $? -ne 1 ]]; then
 | |
|   echo These snippet lines are indented with spaces:
 | |
|   echo
 | |
|   echo "$SPACED"
 | |
|   echo
 | |
|   echo Tests failed!
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| echo Tests passed!
 | |
| exit 0
 |