Fixes the path to the patches directory so it works with `quickrun`. Before fix: ``` iex(emqx@127.0.0.1)3> :init.get_arguments() [ # ... pa: ['"_build/dev-run/emqx/data/patches"'], # ... ] ``` After fix: ``` iex(emqx@127.0.0.1)1> :init.get_arguments() [ # ... pa: ['_build/dev-run/emqx/data/patches'], # ... ] ```
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||