aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy Wing2018-04-22 18:57:27 +0200
committerTeddy Wing2018-04-22 18:57:27 +0200
commitc4515f55b8778f8128a853e1632a60b34d666ae8 (patch)
tree849a604b13b7fb48c11bc8d49c2e988675ace0b4 /Makefile
parent9f606b4eee0d30d35fe64e009d4e5c7ad0783a84 (diff)
downloadPassextract-c4515f55b8778f8128a853e1632a60b34d666ae8.tar.bz2
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.
Diffstat (limited to 'Makefile')
-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