blob: a8bb492ae9fef30bae438acb3f72385a3899a8de [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';
7 bench init frappe-bench --frappe-path https://github.com/frappe/frappe.git --frappe-branch $branch
8)