2019-03-18 10:05:18 -04: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 07:13:16 -05:00
|
|
|
@@ -265,6 +265,7 @@ format: compile
|
|
|
|
$(call FORMAT)
|
2019-03-18 10:05:18 -04:00
|
|
|
|
|
|
|
test_formatted: compile
|
2020-01-27 07:13:16 -05:00
|
|
|
+ $(call FORMAT,lib/mix/lib/mix/scm/git.ex)
|
|
|
|
$(call FORMAT,--check-formatted)
|
2019-03-18 10:05:18 -04:00
|
|
|
|
|
|
|
test_erlang: compile $(TEST_ERLS)
|