This repository has been archived on 2024-08-07. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-03-18 14:05:18 +00:00
|
|
|
In the package definition the call to the command 'git' is substituted with
|
|
|
|
the full path to the git executable. This change causes the mix formatting tool
|
|
|
|
to complain that the line is too long. This workaround reformats the file
|
|
|
|
after the substitution is made.
|
|
|
|
|
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2020-01-27 12:13:16 +00:00
|
|
|
@@ -265,6 +265,7 @@ format: compile
|
|
|
|
$(call FORMAT)
|
2019-03-18 14:05:18 +00:00
|
|
|
|
|
|
|
test_formatted: compile
|
2020-01-27 12:13:16 +00:00
|
|
|
+ $(call FORMAT,lib/mix/lib/mix/scm/git.ex)
|
|
|
|
$(call FORMAT,--check-formatted)
|
2019-03-18 14:05:18 +00:00
|
|
|
|
|
|
|
test_erlang: compile $(TEST_ERLS)
|