aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
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