distillery icon indicating copy to clipboard operation
distillery copied to clipboard

Ran into issue fixed in master

Open mhsdef opened this issue 5 years ago • 2 comments

@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.

mhsdef avatar Apr 29 '20 18:04 mhsdef

I'm also experiencing this issue and in support of this! Thank you!

dkarter avatar Apr 30 '20 17:04 dkarter

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 ...

palerdot avatar Jun 06 '20 06:06 palerdot