2019-12-09 12:53:40 +00:00
|
|
|
# Updating Lotus
|
|
|
|
|
2019-12-18 21:46:09 +00:00
|
|
|
If you installed Lotus on your machine, you can upgrade to the latest version by doing the following:
|
2019-12-09 12:53:40 +00:00
|
|
|
|
|
|
|
```sh
|
2019-12-10 15:43:12 +00:00
|
|
|
# get the latest
|
2019-12-09 12:53:40 +00:00
|
|
|
git pull origin master
|
2019-12-10 15:43:12 +00:00
|
|
|
|
|
|
|
# clean and remake the binaries
|
2019-12-11 15:38:04 +00:00
|
|
|
make clean && make build
|
2020-07-27 21:52:17 +00:00
|
|
|
|
|
|
|
# instal binaries in correct location
|
|
|
|
make install # or sudo make install if necessary
|
|
|
|
```
|