diff options
author | Pierre Fenoll <[email protected]> | 2013-12-19 14:36:06 +0000 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-03-27 10:07:34 +0100 |
commit | be34551be2119a6c3c1a7edf113b7db12789423b (patch) | |
tree | b189873009476617d1e8e8ca058e187fbd62edb5 /lib/stdlib/src/escript.erl | |
parent | 25237481ccccd3ddfa74582dc267632ad618ba30 (diff) | |
download | otp-be34551be2119a6c3c1a7edf113b7db12789423b.tar.gz otp-be34551be2119a6c3c1a7edf113b7db12789423b.tar.bz2 otp-be34551be2119a6c3c1a7edf113b7db12789423b.zip |
Document an escript:create/2 hidden feature
escript:create/2 accepts a 3-elements tuple containing files and
zip:create/3 options to build a zip file.
Also had to update zip typespecs to allow referral from escript docs.
Diffstat (limited to 'lib/stdlib/src/escript.erl')
-rw-r--r-- | lib/stdlib/src/escript.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/stdlib/src/escript.erl b/lib/stdlib/src/escript.erl index fea718541d..09068d46cc 100644 --- a/lib/stdlib/src/escript.erl +++ b/lib/stdlib/src/escript.erl @@ -59,7 +59,6 @@ file:filename() | {file:filename(), binary()} | {file:filename(), binary(), file:file_info()}. --type zip_create_option() :: term(). -type section() :: shebang | {shebang, shebang() | default | undefined} @@ -68,8 +67,8 @@ | {emu_args, emu_args() | undefined} | {source, file:filename() | binary()} | {beam, file:filename() | binary()} - | {archive, file:filename() | binary()} - | {archive, [zip_file()], [zip_create_option()]}. + | {archive, zip:filename() | binary()} + | {archive, [zip_file()], [zip:create_option()]}. %%----------------------------------------------------------------------- |