Skip to content

Commit

Permalink
fix appendbox for subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
boyvinall committed May 23, 2018
1 parent 73bc751 commit 0ae6aaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rice/append.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ func operationAppendBoxes(boxes []string) {

boxMap := make(map[string]string)
for _, box := range boxes {
boxMap[box] = box
appendedBoxName := strings.Replace(box, `/`, `-`, -1)
boxMap[appendedBoxName] = box
}
operationAppend(binfileName, boxMap)
}
Expand Down

0 comments on commit 0ae6aaa

Please sign in to comment.