blob: f96269b919c1837eb7f72705db91c20798753b58 [file] [log] [blame]
Anand Doshi6677fd52016-04-07 18:19:56 +05301#!/bin/bash
2
3cd ~/
4curl -I https://github.com/frappe/frappe/tree/$TRAVIS_BRANCH | head -n 1 | cut -d $' ' -f2 | (
5 read response;
6 [ $response == '200' ] && branch=$TRAVIS_BRANCH || branch='develop';
Achilles Rasquinha2ec5b5e2018-05-24 04:46:12 -05007 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)