Add alias for bootstrap in leningen-core

This commit is contained in:
Hugo Duncan 2013-03-12 22:58:50 -04:00
parent e7f1e5664f
commit 6ade0b7822
2 changed files with 5 additions and 4 deletions

View file

@ -43,10 +43,10 @@ functionality they change are especially welcome.
## Bootstrapping
You don't need to "build" Leiningen per se, but when you're developing
on a checkout you will need to get its dependencies in place. Just use
a stable release of Leiningen to run `lein do install, classpath
.lein-bootstrap` in the `leiningen-core` directory.
You don't need to "build" Leiningen per se, but when you're developing on a
checkout you will need to get its dependencies in place. Just use a stable
release of Leiningen to run `lein bootstrap` (an alias for `lein do install,
classpath .lein-bootstrap`) in the `leiningen-core` directory.
If you don't have a stable `lein` installed, simply check out the
`stable` branch and copy `bin/lein` to somewhere on your `$PATH`, then

View file

@ -20,4 +20,5 @@
;; profile since it must be installed using lein1
;;:aot :all
:dev-resources-path "dev-resources"
:aliases {"bootstrap" ["do" "install," "classpath" ".lein-bootstrap"]}
:profiles {:dev {:resource-paths ["dev-resources"]}})