From d7cf5558e56c9ca9611cec1f228365541f25f2bd Mon Sep 17 00:00:00 2001 From: Alex Yao Date: Mon, 29 Aug 2016 19:34:40 -0700 Subject: [PATCH] Swap auth and config position (#4909) --- run.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run.sh b/run.sh index 5f8d199bee..dac6c19484 100755 --- a/run.sh +++ b/run.sh @@ -3,14 +3,14 @@ pokebotpath=$(cd "$(dirname "$0")"; pwd) auth="" config="" if [ ! -z $1 ]; then - auth=$1 + config=$1 else - auth="./configs/auth.json" + config="./configs/config.json" fi if [ ! -z $2 ]; then - config=$2 + auth=$2 else - config="./configs/config.json" + auth="./configs/auth.json" fi cd $pokebotpath source bin/activate