Skip to content

Commit d78f69d

Browse files
committed
Consistently use tabs in Makefile
1 parent 3f6dafa commit d78f69d

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ indent_style = space
88
insert_final_newline = true
99
max_line_length = 80
1010
trim_trailing_whitespace = true
11+
12+
[Makefile]
13+
indent_size = 8
14+
indent_style = tab

Makefile

+12-12
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414

1515
# What is the prerelease version?
1616
vsn_pre = $(shell git describe --tags --always --first-parent \
17-
| grep -Eo -- '(-rc\.[0-9]+)?$$' \
18-
2>/dev/null)
17+
| grep -Eo -- '(-rc\.[0-9]+)?$$' \
18+
2>/dev/null)
1919

2020
# What is the release version?
2121
vsn_rel = $(shell git describe --tags --always --first-parent \
22-
| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+' \
23-
| tail -c +2 \
24-
2>/dev/null)
22+
| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+' \
23+
| tail -c +2 \
24+
2>/dev/null)
2525

2626
# What is the release tag?
2727
vsn_tag = $(shell git describe --tags --always --first-parent \
28-
| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
29-
2>/dev/null)
28+
| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
29+
2>/dev/null)
3030

3131
annotator_vsn = $(vsn_rel)
3232

@@ -64,9 +64,9 @@ else
6464
dist:
6565
@rm -rf apache-annotator-$(annotator_vsn)-incubating
6666
@git archive \
67-
--output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
68-
--prefix apache-annotator-$(annotator_vsn)-incubating/ \
69-
$(vsn_tag)
67+
--output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
68+
--prefix apache-annotator-$(annotator_vsn)-incubating/ \
69+
$(vsn_tag)
7070
@echo "Done: apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz"
7171

7272
endif
@@ -80,6 +80,6 @@ distcheck: dist
8080
distsign: dist
8181
@gpg -ab apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz
8282
@sha256sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
83-
> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha256
83+
> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha256
8484
@sha512sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
85-
> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha512
85+
> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha512

0 commit comments

Comments
 (0)