Skip to content

Commit d035255

Browse files
committed
remove tabs
1 parent c6e7add commit d035255

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Makefile

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ifndef VERBOSE
1313
endif
1414

1515
ifdef CI
16-
LINTFLAGS := --reporter github-actions-logging
17-
FMTFLAGS := --lint --reporter github-actions-log
16+
LINTFLAGS := --reporter github-actions-logging
17+
FMTFLAGS := --lint --reporter github-actions-log
1818
else
19-
LINTFLAGS :=
20-
FMTFLAGS :=
19+
LINTFLAGS :=
20+
FMTFLAGS :=
2121
endif
2222

2323
PROJECT := Coder\ Desktop
@@ -27,24 +27,24 @@ SWIFT_VERSION := 6.0
2727

2828
MUTAGEN_RESOURCES := mutagen-agents.tar.gz mutagen-darwin-arm64 mutagen-darwin-amd64
2929
ifndef MUTAGEN_VERSION
30-
MUTAGEN_VERSION:=$(shell grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$$' $(PROJECT)/Resources/.mutagenversion)
30+
MUTAGEN_VERSION:=$(shell grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$$' $(PROJECT)/Resources/.mutagenversion)
3131
endif
3232
ifeq ($(strip $(MUTAGEN_VERSION)),)
33-
$(error MUTAGEN_VERSION must be a valid version)
33+
$(error MUTAGEN_VERSION must be a valid version)
3434
endif
3535

3636
ifndef CURRENT_PROJECT_VERSION
37-
CURRENT_PROJECT_VERSION:=$(shell git describe --match 'v[0-9]*' --dirty='.devel' --always --tags)
37+
CURRENT_PROJECT_VERSION:=$(shell git describe --match 'v[0-9]*' --dirty='.devel' --always --tags)
3838
endif
3939
ifeq ($(strip $(CURRENT_PROJECT_VERSION)),)
40-
$(error CURRENT_PROJECT_VERSION cannot be empty)
40+
$(error CURRENT_PROJECT_VERSION cannot be empty)
4141
endif
4242

4343
ifndef MARKETING_VERSION
44-
MARKETING_VERSION:=$(shell git describe --match 'v[0-9]*' --tags --abbrev=0 | sed 's/^v//' | sed 's/-.*$$//')
44+
MARKETING_VERSION:=$(shell git describe --match 'v[0-9]*' --tags --abbrev=0 | sed 's/^v//' | sed 's/-.*$$//')
4545
endif
4646
ifeq ($(strip $(MARKETING_VERSION)),)
47-
$(error MARKETING_VERSION cannot be empty)
47+
$(error MARKETING_VERSION cannot be empty)
4848
endif
4949

5050
# Define the keychain file name first

0 commit comments

Comments
 (0)