summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Mota <jose@josemota.net>2016-06-10 13:21:34 +0100
committerJosé Mota <jose@josemota.net>2016-06-10 13:21:34 +0100
commit0d8734cb5f38b6d6d6e8607eb6b78808cad1ffd4 (patch)
tree844293453232edf8e4b3111ac459f323716baebb
parent76527efa2b55d68f5b1357ca7d92cff8c2f08027 (diff)
Make curl command silent.
-rwxr-xr-xbin/thomas2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/thomas b/bin/thomas
index b05ead5..1952235 100755
--- a/bin/thomas
+++ b/bin/thomas
@@ -9,7 +9,7 @@ install_mo() {
read -p "You don't have mo installed. Install? (Y/n) " -n 1 -r confirm
case $confirm in
[yY])
- curl https://raw.githubusercontent.com/tests-always-included/mo/master/mo > bin/mo
+ curl -s https://raw.githubusercontent.com/tests-always-included/mo/master/mo > bin/mo
chmod +x bin/mo
;;
*)