Browse Source

fix mad binary:

* should alway be lowest Erlang possible
* for now it's 19
Namdak Tonpa 6 years ago
parent
commit
735a1a309b
3 changed files with 2 additions and 2 deletions
  1. 1 1
      include/mad.hrl
  2. BIN
      mad
  3. 1 1
      src/mad_git.erl

+ 1 - 1
include/mad.hrl

@@ -1 +1 @@
--define(VERSION,"0db140").
+-define(VERSION,"f8a02e").

BIN
mad


+ 1 - 1
src/mad_git.erl

@@ -49,7 +49,7 @@ get_repo([Name|_]) ->
 
 git_clone(Uri,Fast,TrunkPath,[]) -> git_clone(Uri,Fast,TrunkPath,"master");
 git_clone(Uri,Fast,TrunkPath,Rev) ->
-    {["git clone --single-branch --branch ",Rev," ",Fast,Uri," ",TrunkPath],Rev}.
+    {["git clone --single-branch --no-tags --branch ",Rev," ",Fast,Uri," ",TrunkPath],Rev}.
 
 fetch_dep(Cwd, Config, ConfigFile, Name, Cmd, Uri, Co, Cache) ->
     fetch_dep(Cwd, Config, ConfigFile, Name, Cmd, Uri, Co, Cache, deep).