Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
esrrhs committed Jun 7, 2019
1 parent 64197b1 commit 129fb26
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions alg.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ func showErrorStr(err string) {
func dojob(jobtotal *int32, jobdone *int32, filetotal *int64, filedone *int64, input string, output string, doen bool,
key string, split int) {

input = input + "/"
output = output + "/"
input = filepath.FromSlash(input)
output = filepath.FromSlash(output)
input = filepath.Clean(input)
output = filepath.Clean(output)

var done map[string]int
done = make(map[string]int)
Expand Down

0 comments on commit 129fb26

Please sign in to comment.