Skip to content

Commit 387250b

Browse files
committed
fix(RunMySqlDump): remove additional "/" character
1 parent e464e24 commit 387250b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dump.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func RunMysqldump(command, username, password, databaseName, migrationType, dire
3131
}
3232

3333
// Full path of the dump file
34-
filePath := fmt.Sprintf("%s/%s", directory, fileName)
34+
filePath := fmt.Sprintf("%s%s", directory, fileName)
3535

3636
// Construct the mysqldump command based on the migration type
3737
var dumpCommand string

0 commit comments

Comments
 (0)