diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-11-06 05:12:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 05:12:29 +0300 |
commit | 812c8bc14a4214e9d0970e7a333be72e745137b2 (patch) | |
tree | 45ad40df49ac4c616280c889f2f8dbaae3e3e1ad /Makefile | |
parent | ec42b42ce601808070462111c0c28edb0e89babb (diff) | |
download | alacritty-812c8bc14a4214e9d0970e7a333be72e745137b2.tar.gz alacritty-812c8bc14a4214e9d0970e7a333be72e745137b2.zip |
Add editorconfig
This commit also purges .gitignore, since the files mentioned in it
should be handled by global ignore file.
Fixes #4378.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,14 +6,14 @@ MANPAGE = $(ASSETS_DIR)/alacritty.man TERMINFO = $(ASSETS_DIR)/alacritty.info COMPLETIONS_DIR = $(ASSETS_DIR)/completions COMPLETIONS = $(COMPLETIONS_DIR)/_alacritty \ - $(COMPLETIONS_DIR)/alacritty.bash \ - $(COMPLETIONS_DIR)/alacritty.fish + $(COMPLETIONS_DIR)/alacritty.bash \ + $(COMPLETIONS_DIR)/alacritty.fish APP_NAME = Alacritty.app APP_TEMPLATE = $(ASSETS_DIR)/osx/$(APP_NAME) APP_DIR = $(RELEASE_DIR)/osx APP_BINARY = $(RELEASE_DIR)/$(TARGET) -APP_BINARY_DIR = $(APP_DIR)/$(APP_NAME)/Contents/MacOS +APP_BINARY_DIR = $(APP_DIR)/$(APP_NAME)/Contents/MacOS APP_EXTRAS_DIR = $(APP_DIR)/$(APP_NAME)/Contents/Resources APP_COMPLETIONS_DIR = $(APP_EXTRAS_DIR)/completions |