This website requires JavaScript.
Explore
Help
Sign In
jjkiers
/
dotfiles
Watch
1
Star
0
Fork
0
You've already forked dotfiles
Code
Issues
Pull Requests
Releases
Wiki
Activity
8e3b0a28e9
dotfiles
/
bin
/
jq
8 lines
95 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add jq for linux. jq is a JSON parser. It is used by the release script. Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
2014-05-08 06:36:08 +00:00
#!/bin/bash
if [ `uname` == 'Darwin' ]; then
Use local jq if available on Mac. Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
2014-06-25 16:09:27 +00:00
/usr/local/bin/jq $@
Add jq for linux. jq is a JSON parser. It is used by the release script. Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
2014-05-08 06:36:08 +00:00
else
jq-linux $@
fi
Reference in New Issue
Copy Permalink