Skip to content

Commit ac31a49

Browse files
committed
Adds WATCHER-NAME variable in Makefile and removes unnecessary prints
Signed-off-by: Harsh4902 <harshparmar4902@gmail.com>
1 parent e65f373 commit ac31a49

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ CURRENT_DIR=$(shell pwd)
33
DIST_DIR=${CURRENT_DIR}/build/dist
44
CLI_NAME=microcks
55
BIN_NAME=microcks
6+
WATCHER_NAME=watcher
67

78
HOST_OS=$(shell go env GOOS)
89
HOST_ARCH=$(shell go env GOARCH)

cmd/import.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,6 @@ func NewImportCommand(globalClientOpts *connectors.ClientOptions) *cobra.Command
105105
Context: []string{globalClientOpts.Context},
106106
MainArtifact: mainArtifact,
107107
})
108-
109-
fmt.Println(watchCfg.Entries)
110-
111108
//write watch file
112109
err = config.WriteLocalWatchConfig(*watchCfg, watchFile)
113110
errors.CheckError(err)

pkg/importer/watcher/watchManager.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ func (wm *WatchManager) Reload() error {
7272
}
7373

7474
wm.watchEntries = newFiles
75-
fmt.Println(wm.watchEntries)
7675
return nil
7776
}
7877

0 commit comments

Comments
 (0)