fixed #235 - shell variables have to be exported to be accessible in subshells
This commit is contained in:
parent
03ee9319b9
commit
257e71b894
1 changed files with 2 additions and 2 deletions
|
@ -32,13 +32,13 @@ source repository and the installation directory. To change the
|
|||
installation directory:
|
||||
|
||||
```bash
|
||||
$ PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
|
||||
$ export PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
|
||||
```
|
||||
|
||||
To change the source repository:
|
||||
|
||||
```bash
|
||||
$ PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
|
||||
$ export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
|
||||
```
|
||||
|
||||
Note that the installer will back up any existing `.emacs` file or
|
||||
|
|
Loading…
Reference in a new issue