Commit b8a432c6 authored by Simon Pastor's avatar Simon Pastor
Browse files

uncomment the code that was preventing the deletion of temp files (for testing)

parent cedb81b8
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -300,12 +300,12 @@ func dockerize(registry string, targetName string, cobraCmd *cobra.Command) {
		}
	}
	// cleanup data
	/*	if len(data) != 0 {
	if len(data) != 0 {
		for k := range data {
			dstDataDir := bindir + "/" + k
			cmd := exec.Command("rm", "-r", dstDataDir)
			_, _ = utils.ExecuteCmd(cmd, cobraCmd)
		}
	}
	*/

}