1
當我運行./rebar get-deps compile escriptize
時,出現如下:命令「escriptize不理解或不適用
WARN: 'escriptize' command does not apply to directory /path/to/foo
Command 'escriptize' not understood or not applicable
我有什麼忘記了嗎?
當我運行./rebar get-deps compile escriptize
時,出現如下:命令「escriptize不理解或不適用
WARN: 'escriptize' command does not apply to directory /path/to/foo
Command 'escriptize' not understood or not applicable
我有什麼忘記了嗎?
即使您生成escript包,螺紋鋼仍需要foo.app
文件。如果您沒有使用./rebar create-app appid=foo
創建你的「應用程序」,你需要創建一個手工:
{application, foo,
[
{description, ""},
{vsn, "1"},
{registered, []},
{applications, [
kernel, stdlib
]},
{env, []}
]}.
請注意,您可能需要再次./rebar compile
爲了產生foo.app
文件之前./rebar escriptize
將產生腳本正確。