From 550f93bdd4b9b3c0a7bfdded51f45faa5ca73b36 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Thu, 4 Jul 2019 20:19:42 +0530 Subject: [PATCH] fix(travis): Change working directory to ~ --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ecb48f4212..5aad3d295f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,13 +9,14 @@ services: - mysql install: + - cd ~ - source ~/.nvm/nvm.sh - nvm install v8.10.0 - git clone https://github.com/adityahase/bench --depth 1 --branch faster - pip install -e ./bench - - cd ~/ && bench init frappe-bench --skip-assets --python $(which python) --frappe-path $TRAVIS_BUILD_DIR + - bench init frappe-bench --skip-assets --python $(which python) --frappe-path $TRAVIS_BUILD_DIR - cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/ - mysql -u root -ptravis -e "CREATE DATABASE test_frappe"