From 2c16ba18a4aa970615c16943ceceed7a579294d1 Mon Sep 17 00:00:00 2001 From: Gerald Lonlas Date: Sat, 3 Feb 2018 12:55:15 -0800 Subject: [PATCH] Fix config generation on setup.sh --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 7d382190c..b38f2c645 100755 --- a/setup.sh +++ b/setup.sh @@ -116,8 +116,8 @@ function config_generator () { -e "s/\"fiat_display_currency\": \"USD\",/\"fiat_display_currency\": \"$fiat_currency\",/g" \ -e "s/\"your_exchange_key\"/\"$api_key\"/g" \ -e "s/\"your_exchange_secret\"/\"$api_secret\"/g" \ - -e "s/\"your_instagram_token\"/\"$token\"/g" \ - -e "s/\"your_instagram_chat_id\"/\"$chat_id\"/g" + -e "s/\"your_telegram_token\"/\"$token\"/g" \ + -e "s/\"your_telegram_chat_id\"/\"$chat_id\"/g" -e "s/\"dry_run\": false,/\"dry_run\": true,/g" config.json.example > config.json }