summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Schuurmans <bart@minnozz.com>2020-10-08 23:00:33 +0200
committerGitHub <noreply@github.com>2020-10-08 17:00:33 -0400
commit075436b00b911c7031cee9cb596059d0c3735041 (patch)
tree9f2f7eb0643148ebf88a552e3e999e5ee9b338ef
parent1dbfd35b541fe5e4c30a2c28c85884e552630e0b (diff)
Fix whitespace in Makefile (#344)
Replace 4 spaces with a tab
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fac23106..6c586645 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ version:
hash:
@version=$$(make version) && \
- printf "$$version-tar.gz %s\n" $$(curl -sL https://github.com/dandavison/delta/archive/$$version.tar.gz | sha256sum -) && \
+ printf "$$version-tar.gz %s\n" $$(curl -sL https://github.com/dandavison/delta/archive/$$version.tar.gz | sha256sum -) && \
printf "delta-$$version-x86_64-apple-darwin.tar.gz %s\n" $$(curl -sL https://github.com/dandavison/delta/releases/download/$$version/delta-$$version-x86_64-apple-darwin.tar.gz | sha256sum -) && \
printf "delta-$$version-x86_64-unknown-linux-musl.tar.gz %s\n" $$(curl -sL https://github.com/dandavison/delta/releases/download/$$version/delta-$$version-x86_64-unknown-linux-musl.tar.gz | sha256sum -)