mirror of
https://github.com/containers/podman.git
synced 2025-09-29 01:35:06 +08:00

Need to pull in the latest containers/storage and containers/image to fix lots of issues. Also want to update runtime-tools to take advantage of newer generate code. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #152 Approved by: rhatdan
10 lines
216 B
Go
10 lines
216 B
Go
package filepath
|
|
|
|
import "strings"
|
|
|
|
// Join is an explicit-OS version of path/filepath's Join.
|
|
func Join(os string, elem ...string) string {
|
|
sep := Separator(os)
|
|
return Clean(os, strings.Join(elem, string(sep)))
|
|
}
|