Skip to content

Commit

Permalink
fix: update easy install location
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed May 2, 2020
1 parent 1ba8c46 commit 803fa2d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -58,17 +58,17 @@ matrix:
- name: "Python 3.6 Easy Install"
python: 3.6
env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose
script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose

- name: "Python 3.7 Easy Install"
python: 3.7
env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose
script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose

- name: "Python 3.8 Easy Install"
python: 3.8
env: TEST=easy_install
script: sudo python $TRAVIS_BUILD_DIR/playbooks/install.py --user travis --run-travis --production --verbose
script: sudo python $TRAVIS_BUILD_DIR/install.py --user travis --run-travis --production --verbose

install:
- pip install urllib3 pyOpenSSL ndg-httpsclient pyasn1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -132,7 +132,7 @@ You need to install the following packages for the script to run:
Download the Easy Install script and execute it:

```sh
$ wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
$ wget https://raw.githubusercontent.com/frappe/bench/master/install.py
$ python3 install.py --production
```

Expand All @@ -142,7 +142,7 @@ When the setup is complete, you will be able to access the system at `http://<yo

#### Troubleshooting

In case the setup fails, the log file is saved under `/tmp/logs/install_bench.log`. You may then:
In case the setup fails, the log file is saved under `/tmp/logs/install_bench.log`. You may then:

- Create an Issue in this repository with the log file attached.
- Search for an existing issue or post the log file on the [Frappe/ERPNext Discuss Forum](https://discuss.erpnext.com/c/bench) with the tag `installation_problem` under "Install/Update" category.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion vm/scripts/debian_family/install_erpnext_develop.sh
@@ -1,5 +1,5 @@
#!/bin/bash -eux

# Install ERPNext
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
wget https://raw.githubusercontent.com/frappe/bench/master/install.py
python install.py --develop --user frappe --mysql-root-password frappe --admin-password admin
2 changes: 1 addition & 1 deletion vm/scripts/debian_family/install_erpnext_production.sh
@@ -1,5 +1,5 @@
#!/bin/bash -eux

# Install ERPNext
wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
wget https://raw.githubusercontent.com/frappe/bench/master/install.py
python install.py --production --user frappe --mysql-root-password frappe --admin-password admin

0 comments on commit 803fa2d

Please sign in to comment.