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
116fcc44c4
dotfiles
/
bin
/
jq
8 lines
99 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
Update jq Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
2015-05-12 09:59:36 +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
Update jq Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
2015-05-12 09:59:36 +00:00
jq-linux "$@"
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
fi
Reference in New Issue
Copy Permalink