 b36abc6f30
			
		
	
	b36abc6f30
	
	
	
		
			
			jq is a JSON parser. It is used by the release script. Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
		
			
				
	
	
		
			8 lines
		
	
	
		
			80 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			80 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [ `uname` == 'Darwin' ]; then
 | |
|     jq $@
 | |
| else
 | |
|     jq-linux $@
 | |
| fi
 |