blob: 38ca28b7c64687564c2de7d20245a71c9407c723 [file] [log] [blame]
Anand Doshi6677fd52016-04-07 18:19:56 +05301#!/bin/bash
2
3cd ~/
Suraj Shettyd3530122018-12-25 14:30:50 +05304curl -I https://github.com/surajshetty3416/frappe/tree/$TRAVIS_BRANCH | head -n 1 | cut -d $' ' -f2 | (
Anand Doshi6677fd52016-04-07 18:19:56 +05305 read response;
6 [ $response == '200' ] && branch=$TRAVIS_BRANCH || branch='develop';
Suraj Shettyd3530122018-12-25 14:30:50 +05307 bench init frappe-bench --frappe-path https://github.com/surajshetty3416/frappe.git --frappe-branch $branch --python $(which python)
Anand Doshi6677fd52016-04-07 18:19:56 +05308)