Merge pull request #170 from genexp/alternateinstall

Allows you to install from your own repository and use a different directory
This commit is contained in:
Bozhidar Batsov 2012-06-11 23:02:31 -07:00
commit 4377e146cf
2 changed files with 19 additions and 2 deletions

View file

@ -34,6 +34,23 @@ https://github.com/bbatsov/prelude/raw/master/utils/installer.sh
You can now power up your Emacs, sit back and enjoy Prelude.
There are two environment variables you can use to control the
source repository and the installation directory. To change the
installation directory:
`PRELUDE_INSTALL_DIR="$HOME/.emacs.d" &&
curl -L
https://github.com/bbatsov/prelude/raw/master/utils/installer.sh
| sh`
To change the source repository:
`PRELUDE_URL="https://github.com/yourname/prelude.git" &&
curl -L
https://github.com/bbatsov/prelude/raw/master/utils/installer.sh
| sh`
## Would you like to know more?
Check out the [Prelude's project page](http://batsov.com/prelude) for

View file

@ -1,5 +1,5 @@
PRELUDE_INSTALL_DIR="$HOME/.emacs.d"
PRELUDE_URL=https://github.com/bbatsov/prelude.git
[ -z "$PRELUDE_INSTALL_DIR" ] && PRELUDE_INSTALL_DIR="$HOME/.emacs.d"
[ -z "$PRELUDE_URL" ] && PRELUDE_URL=https://github.com/bbatsov/prelude.git
if [ -d $PRELUDE_INSTALL_DIR/prelude ]
then