blob: f96269b919c1837eb7f72705db91c20798753b58 [file] [log] [blame]
Anand Doshi6677fd52016-04-07 18:19:56 +05301#!/bin/bash
2
3cd ~/
Suraj Shettydabaec02018-09-21 15:46:44 +05304curl -I https://github.com/frappe/frappe/tree/$TRAVIS_BRANCH | head -n 1 | cut -d $' ' -f2 | (
Anand Doshi6677fd52016-04-07 18:19:56 +05305 read response;
Suraj Shettydabaec02018-09-21 15:46:44 +05306 [ $response == '200' ] && branch=$TRAVIS_BRANCH || branch='develop';
7 bench init frappe-bench --frappe-path https://github.com/frappe/frappe.git --frappe-branch $branch --python $(which python)
Anand Doshi6677fd52016-04-07 18:19:56 +05308)