https://github.com/adzz/foo
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/adzz/foo
- Owner: Adzz
- Created: 2018-12-10T17:21:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T17:32:25.000Z (over 7 years ago)
- Last Synced: 2025-10-24T20:43:59.418Z (9 months ago)
- Language: Elixir
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Foo
Minimal test case for bug in release commands in distillery.
Running this fails:
```
rm -rf _releases && MIX_ENV=prod mix release --env=prod --name=base && MIX_ENV=prod ./_releases/base/bin/base eval 'Elixir.LibraryApp.ReleaseTasks.task'
```
Even though running this works:
```
iex -S mix
```
Then:
```
> Elixir.LibraryApp.ReleaseTasks.task
```
See forum post here for context: [https://elixirforum.com/t/module-not-being-loaded-in-umbrella-app-even-though-the-app-it-lives-in-has-started-and-loaded/18634](https://elixirforum.com/t/module-not-being-loaded-in-umbrella-app-even-though-the-app-it-lives-in-has-started-and-loaded/18634)