No, just packaging Erlang applications into zipped Erlang script
executable.

Its format can be described in next shell-script:

( echo '#!/usr/bin/env escript'
  echo '%%!-smp'
  zip -j - ebin/*; ) > target
chmod 755 target

But it works only when I add "| cat" after zip invocation:

( echo '#!/usr/bin/env escript'
  echo '%%!-smp'
  zip -j - ebin/* | cat; ) > target
chmod 755 target

-- 

Best regards, Aleksey Morarash
e-mail: tuxo...@gmail.com

Attachment: signature.asc
Description: Digital signature

Reply via email to