From 3f0121ea780a6d67ad74e5acb56cfbd4c046282c Mon Sep 17 00:00:00 2001 From: Simone Ferretti Date: Fri, 20 Sep 2024 12:02:40 +0200 Subject: [PATCH] fix: remove command output when running --- dump.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump.go b/dump.go index 1a27f0b..6322494 100644 --- a/dump.go +++ b/dump.go @@ -44,7 +44,7 @@ func RunMysqldump(username, password, databaseName, migrationType, directory str dumpCommand = fmt.Sprintf("mysqldump -u %s --password='%s' %s > %s", username, password, databaseName, filePath) } - fmt.Printf("Running command: %s\n", dumpCommand) + fmt.Print("Running...\n") cmd := exec.Command("sh", "-c", dumpCommand) output, err := cmd.CombinedOutput()