We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204abe9 commit d647e07Copy full SHA for d647e07
.gitignore
@@ -4,4 +4,6 @@ vendor/
4
.vendor
5
manifest-tool
6
.vscode/launch.json
7
-test/
+test/
8
+in/
9
+out/
Makefile
@@ -12,4 +12,4 @@ docker:
12
13
.PHONY: push
14
push:
15
- docker push $(DOCKER_REPO)/$(DOCKER_IMAGE_NAME):$(TAG)
+ docker push $(DOCKER_REPO)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)
pkg/configreloader/configreloader.go
@@ -249,7 +249,8 @@ func (cfg *ConfigReloader) unarchiveDir(path string) error {
249
}
250
251
for _, file := range files {
252
- if file.IsDir() {
+ if file.IsDir() || file.Name() == "..data" {
253
+ log.Printf("Skipping %s", file.Name())
254
continue
255
256
fullFilePath := path + "/" + file.Name()
0 commit comments