distillery
                                
                                
                                
                                    distillery copied to clipboard
                            
                            
                            
                        Ran into issue fixed in master
@bitwalker Any chance a new release could be cut?
We ran into the #718 issue (fixed in master with 82ebcb2074d4f6df977b0491c1c38145bef355cc) trying to get to production with distillery 2.1.1. We've pinned to the GH commit but it feels non-prod worthy.
I'm also experiencing this issue and in support of this! Thank you!
I also faced https://github.com/bitwalker/distillery/pull/718 with latest distillery version (v2.1.1).
Following solution from elixir forum help me get past this issue. I had to add following hook in .deliver/config
post_extract_release_archive() {
  status "Removing start_erl.data"
  __remote "
    [ -f ~/.profile ] && source ~/.profile
    set -e
    cd $DELIVER_TO/$APP/var $SILENCE
    rm start_erl.data
  "
}
As a newbie to distillery/elixir deployment this was a bummer, as we are not sure if the problem was with our code or with the build tool. It would be great to fix this issue properly ...