mirror of
https://github.com/schollz/croc.git
synced 2024-11-23 23:54:17 +03:00
use to/from slash
This commit is contained in:
parent
ffbc607303
commit
9e02fa746c
@ -30,6 +30,7 @@ func unzipFile(src, dest string) (err error) {
|
||||
// Store filename/path for returning and using later on
|
||||
fpath := filepath.Join(dest, f.Name)
|
||||
log.Debugf("unzipping %s", fpath)
|
||||
fpath = filepath.FromSlash(fpath)
|
||||
|
||||
if f.FileInfo().IsDir() {
|
||||
|
||||
@ -145,6 +146,8 @@ func zipFile(fname string, compress bool) (writtenFilename string, err error) {
|
||||
header.Method = zip.Deflate
|
||||
}
|
||||
|
||||
header.Name = filepath.ToSlash(header.Name)
|
||||
|
||||
writer, err = zipWriter.CreateHeader(header)
|
||||
if err != nil {
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user