From 4d2ec680e855afa04ffd02949f5ee03e1d8a7fa4 Mon Sep 17 00:00:00 2001 From: Miguel Mota Date: Sat, 31 Mar 2018 03:55:14 -0700 Subject: [PATCH] update readme Former-commit-id: b5a11987259c3a494ffaf683d268580be4b24aa5 [formerly b5a11987259c3a494ffaf683d268580be4b24aa5 [formerly 836cc0eb20f23ce119e42f02e35bd987cf059156 [formerly 8a0b176daaf608cebaa77b294c6a4cdeb4bf8176]]] Former-commit-id: 0d242cb9499ad811a3f41caef83b74221aec2280 Former-commit-id: 01fb71ed65a10176984c089db65976d573f49691 [formerly 71273d3b158674a871acc2af36c241601320f433] Former-commit-id: 68d7b7acf5f83dc91de80b0874bb84569f7baf7d --- README.md | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d11c87c..4e75e1b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ go install github.com/miguelmota/cointop #### Alternatively (without go) ``` -sudo curl -s https://raw.githubusercontent.com/miguelmota/cointop/master/install.sh | bash +sudo curl -s "https://raw.githubusercontent.com/miguelmota/cointop/master/install.sh??$(date +%s)" | bash ``` ## Usage diff --git a/install.sh b/install.sh index 958dc95..33c975c 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/bin/bash echo "downloading..." -curl https://github.com/miguelmota/cointop/raw/master/bin/cointop -o cointop +curl -s "https://github.com/miguelmota/cointop/raw/master/bin/cointop" -o cointop echo "installing..." mv cointop /usr/local/bin/ echo "cointop installed."