From e1742859e1adcd25f84343523563d7bc1933d932 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 11 Apr 2016 10:56:07 -0400 Subject: [PATCH] Rename Linux binary to "etcher" (#282) The capital letter is not very user friendly for command line people. Fixes: https://github.com/resin-io/etcher/issues/278 Signed-off-by: Juan Cruz Viotti --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index dbce0039..e173a9ef 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,7 @@ etcher-release/Etcher-linux-x86: . --overwrite \ --out=$(dir $@) mv $(dir $@)Etcher-linux-ia32 $@ + mv $@/Etcher $@/etcher etcher-release/Etcher-linux-x64: . $(ELECTRON_PACKAGER) . $(APPLICATION_NAME) \ @@ -65,6 +66,7 @@ etcher-release/Etcher-linux-x64: . --build-version="$(ETCHER_VERSION)" \ --overwrite \ --out=$(dir $@) + mv $@/Etcher $@/etcher etcher-release/Etcher-win32-x86: . $(ELECTRON_PACKAGER) . $(APPLICATION_NAME) \