Skip to content

Commit

Permalink
squash elixir 1.11+ bug with :app in build file
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Oct 12, 2020
1 parent 3654987 commit 654d512
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.6 - 2020-10-12

### Fixed

- Fixed a bug present when running `mix harness.compile` in Elixir 1.11+

## 0.2.5 - 2020-10-06

### Changed
Expand Down
4 changes: 4 additions & 0 deletions lib/harness/manifest.ex
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ defmodule Harness.Manifest do

defp fake_mix_project do
[
# this :app part isn't in Mix.Project.default_config/0, but it fixes an
# error in elixir 1.11+ about needing an :app to access the build path
# for a mix project
app: :harness,
aliases: [],
build_embedded: false,
build_per_environment: true,
Expand Down

0 comments on commit 654d512

Please sign in to comment.