diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-21 18:54:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-21 18:54:54 -0300 |
commit | d435e0b17ee8388aca9bfce9625b240419389028 (patch) | |
tree | b956278c3fdf58289e515f67aa42b5990b8cba93 | |
parent | 86951c5042bc4656e40abe85feccf13f631980d5 (diff) | |
download | apps-d435e0b17ee8388aca9bfce9625b240419389028.tar.gz apps-d435e0b17ee8388aca9bfce9625b240419389028.tar.bz2 |
Inception: simplify installation
-rw-r--r-- | README.md | 8 | ||||
-rwxr-xr-x | inception | 6 |
2 files changed, 4 insertions, 10 deletions
@@ -9,7 +9,7 @@ Installation Get the code: - git clone --recursive https://git.fluxo.info/rhatto/apps $HOME/apps && cd $HOME/apps + git clone --recursive https://git.fluxo.info/rhatto/apps $HOME/apps Then check the source integrity of the latest release: @@ -22,11 +22,7 @@ Inception A more radical approach takes over of all your environment (shell and desktop experience): - $HOME/apps/inception init - -Then, after manually checking repository versions: - - $HOME/apps/inception load --all --deps + $HOME/apps/inception install --all --deps Once installed locally, you can deploy remotelly using rsync+ssh: @@ -78,10 +78,8 @@ function inception_load { # Install function inception_install { - # We could just do that, but we shall make sure that code was verified - #$0 init - #$0 load - echo "Please README!" + $0 init + $0 load $* } # Deploy |