浏览代码

bootstrap: avoid trying to run 'debug' command

If you invoke 'make debug', then bootstrap executes rebar:main/1 with
the extra argument "debug" and rebar treats that as a command. There is
no such command.

Without this patch you will see the following on bootstrap:
Command 'debug' not understood or not applicable
pull/3/head
Tuncer Ayaz 11 年前
父节点
当前提交
af305f2425
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      bootstrap

+ 2
- 1
bootstrap 查看文件

@ -56,7 +56,8 @@ main(Args) ->
%% Run rebar compile to do proper .app validation etc.
%% and rebar escriptize to create the rebar script
rebar:main(["compile", "escriptize"] ++ Args),
RebarArgs = Args -- ["debug"], %% Avoid trying to run 'debug' command
rebar:main(["compile", "escriptize"] ++ RebarArgs),
%% Finally, update executable perms for our script on *nix,
%% or write out script files on win32.

正在加载...
取消
保存