소스 검색

Merge pull request #200 from tuncer/fix-debug-bootstrap

bootstrap: avoid trying to run 'debug' command
pull/3/head
Jared Morrow 11 년 전
부모
커밋
b97677c2c2
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.

불러오는 중...
취소
저장