Skip to content

Commit

Permalink
fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhitms committed Jan 20, 2023
1 parent d5252de commit 9fe8adc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.tmp/
.vscode/
cmd/lekko/lekko
dist/
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
/.tmp/
/.vscode/
/cmd/lekko/lekko

dist/
/dist/
4 changes: 3 additions & 1 deletion make/go/base.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ $(call _assert_var,GO_MODULE)
UNAME_OS := $(shell uname -s)
UNAME_ARCH := $(shell uname -m)

DIST_DIR := dist

ENV_DIR := .env
ENV_SH := $(ENV_DIR)/env.sh
ENV_BACKUP_DIR := $(HOME)/.config/$(PROJECT)/env
Expand All @@ -20,7 +22,7 @@ TMP := .tmp

# Settable
# These are exact file paths that are added to .gitignore and .dockerignore
FILE_IGNORES := $(FILE_IGNORES) $(ENV_DIR)/ $(TMP)/
FILE_IGNORES := $(FILE_IGNORES) $(ENV_DIR)/ $(TMP)/ $(DIST_DIR)/
# Settable
# These will be added without any modification to .gitignore
GIT_FILE_IGNORES ?=
Expand Down

0 comments on commit 9fe8adc

Please sign in to comment.