Browse Source

Small verbosity tweaks

Loïc Hoguin 11 years ago
parent
commit
03576a3fc8
2 changed files with 3 additions and 3 deletions
  1. 1 1
      README.md
  2. 2 2
      erlang.mk

+ 1 - 1
README.md

@@ -119,7 +119,7 @@ The following targets are defined:
 | `dialyze`    | Run Dialyzer on the application              |
 | `pkg-list`   | List packages in the index                   |
 | `pkg-search` | Search for packages in the index             |
-| `rel`        | Builds a release                             |
+| `rel`        | Build a release                              |
 | `clean-rel`  | Delete the previously built release          |
 
 Cleaning means removing all generated and temporary files.

+ 2 - 2
erlang.mk

@@ -66,13 +66,13 @@ define get_relx
 endef
 
 rel: clean-rel all $(RELX)
-	$(RELX)
+	@$(RELX)
 
 $(RELX):
 	@$(call get_relx)
 
 clean-rel:
-	rm -rf _rel
+	@rm -rf _rel
 
 endif