From c4515f55b8778f8128a853e1632a60b34d666ae8 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 22 Apr 2018 18:57:27 +0200 Subject: Makefile(release): Remove `&&`s We don't actually need these since we're not `cd`ing anywhere. For whatever reason when I had written this it just felt like I needed the `&&`s, but that's really not the case. Get rid of them to improve simplicity. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4ee9c75..7d54172 100644 --- a/Makefile +++ b/Makefile @@ -14,14 +14,14 @@ doc/passextract.1: $(TRANSFORMED_MAN_PAGE) doc: doc/passextract.1 clean_transformed release: - cargo build --release && \ - mkdir -p $(RELEASE_DIR) && \ + cargo build --release + mkdir -p $(RELEASE_DIR) cp target/release/passextract \ passextract.bash-completion \ doc/passextract.1 \ - $(RELEASE_DIR) && \ + $(RELEASE_DIR) tar cjvf passextract-$(VERSION)_osx_amd64.tar.bz2 \ - $(RELEASE_DIR) && \ + $(RELEASE_DIR) rm -rf $(RELEASE_DIR) .PHONY: clean_transformed doc release -- cgit v1.2.3