diff options
| author | Teddy Wing | 2018-04-22 18:57:27 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2018-04-22 18:57:27 +0200 | 
| commit | c4515f55b8778f8128a853e1632a60b34d666ae8 (patch) | |
| tree | 849a604b13b7fb48c11bc8d49c2e988675ace0b4 | |
| parent | 9f606b4eee0d30d35fe64e009d4e5c7ad0783a84 (diff) | |
| download | Passextract-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.
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -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 | 
