浏览代码

Merge pull request #2222 from ferd/fix-compiler-change-bootstrap-crashes

Fix bootstrap crashes when compilers get modified
pull/2224/head
Fred Hebert 5 年前
提交者 GitHub
父节点
当前提交
2c3d7ab3ea
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      bootstrap

+ 5
- 0
bootstrap 查看文件

@ -14,6 +14,11 @@ main(_) ->
%% Clear directories for builds since bootstrapping may require
%% a changed structure from an older one
rm_rf("_build/bootstrap"),
%% When recompiling rebar3 itself, the path swaps and cleaning
%% removes the modules in _build/bootstrap, but the VM still
%% manages to discover those in _build/prod from previous builds and
%% cause weird failures when compilers get modified between releases.
rm_rf("_build/prod"),
%% We fetch a few deps from hex for boostraping,
%% so we must compile r3_safe_erl_term.xrl which

正在加载...
取消
保存