Laszlo Toth
Laszlo Toth
Using the following code I'm able to obtain the vsn of the application compilation is currently running on: ``` get_vsn(State) -> CurrentApp = case rebar_state:current_app(State) of undefined -> case rebar_state:project_apps(State)...
What is the easiest way using the current 3.18.0 version of rebar3 to configure my hexpm server where all my required pkgs are mirrored? In earlier versions of rebar3 there...
It's only a question related to what can be locked in rebar.lock. We always commit our rebar.lock files because in most cases we use `{branch, "master"}` in our rebar.config files,...
I'm constantly getting this error: ```python crawler.py posts_full -u barackobama -n 100 -o ./output Traceback (most recent call last): File "crawler.py", line 83, in args.username, args.number, args.mode == "posts_full", args.debug...
I was using a very old rebar3 version (3.13.0). During the recent days I wanted to try out 3.18.0. On this repository when I run `rebar3 eunit` katt_blueprint.erl is generated,...
My problem is the following: As far as I know `rebar3 appup generate` currently generates {upgrade, Mod, ...} instructions into the .appup file only if the module has been changed...
Hi This is not a bug, but a possible feature request. We have around 60 erlang repos. All of them use appup plugin by either generating appup from appup.src calling...
when calling appup release, which calls appup compile on one of our applications it generates {"git", UpgradeInstructions, DowngradeInstructions} instead of putting the correct version number there. The version number comes...
## Bug Description It's a very nice plugin, so probably we would like to use it on our repositories. Unfortunately, it looks like sometimes there are false positive warnings. ##...
We wanted to try eqwalizer on our elixir projects. I know it would be a lot better to implement a parser for Elixir projects, but as a first step we...