From d3530125dd73a0a782758fbfedf73690e3f728f5 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Tue, 25 Dec 2018 14:30:50 +0530 Subject: [PATCH] Modify bench_init.sh - to point frappe branch in my repo with changes to check if any test fails due to the changes --- travis/bench_init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis/bench_init.sh b/travis/bench_init.sh index f96269b919..38ca28b7c6 100755 --- a/travis/bench_init.sh +++ b/travis/bench_init.sh @@ -1,8 +1,8 @@ #!/bin/bash cd ~/ -curl -I https://github.com/frappe/frappe/tree/$TRAVIS_BRANCH | head -n 1 | cut -d $' ' -f2 | ( +curl -I https://github.com/surajshetty3416/frappe/tree/$TRAVIS_BRANCH | head -n 1 | cut -d $' ' -f2 | ( read response; [ $response == '200' ] && branch=$TRAVIS_BRANCH || branch='develop'; - bench init frappe-bench --frappe-path https://github.com/frappe/frappe.git --frappe-branch $branch --python $(which python) + bench init frappe-bench --frappe-path https://github.com/surajshetty3416/frappe.git --frappe-branch $branch --python $(which python) )