diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-07-27 18:36:31 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-08-16 07:22:27 -0500 |
commit | eb8fa02df7d71435a879de987b3139bb5bffb963 (patch) | |
tree | e3ac360353b37811be1a3775d986e4a3ceab16e2 /bootstrap | |
parent | 19c215ee9fe0726a1983b36f4f8bcc21d42a5ef8 (diff) |
large refactoring
Removed separate compilers
Resolves apps to build
Finds avail deps before pulling/building
Includes relx
Simplifies build commands
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap (renamed from bootstrap) | 2 | ||||
-rw-r--r-- | bootstrap/bootstrap.bat | 2 | ||||
-rwxr-xr-x | bootstrap/rebar | bin | 0 -> 160323 bytes |
3 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap/bootstrap index 7d9a1c1..18a243f 100755 --- a/bootstrap +++ b/bootstrap/bootstrap @@ -46,6 +46,8 @@ main(Args) -> false -> undefined end, + os:cmd("./bootstrap/rebar get-deps compile -r"), + %% Compile all src/*.erl to ebin %% To not accidentally try to compile files like Mac OS X resource forks, %% we only look for rebar source files that start with a letter. diff --git a/bootstrap/bootstrap.bat b/bootstrap/bootstrap.bat new file mode 100644 index 0000000..b646a7d --- /dev/null +++ b/bootstrap/bootstrap.bat @@ -0,0 +1,2 @@ +@echo off +escript.exe bootstrap %* diff --git a/bootstrap/rebar b/bootstrap/rebar Binary files differnew file mode 100755 index 0000000..14e5c22 --- /dev/null +++ b/bootstrap/rebar |