mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
Add trailing slash if missing on path options
This commit is contained in:
parent
bce4eec32c
commit
48854eda80
1 changed files with 9 additions and 0 deletions
|
@ -54,6 +54,7 @@ import (
|
|||
assetfs "github.com/elazarl/go-bindata-assetfs"
|
||||
|
||||
autocert "golang.org/x/crypto/acme/autocert"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
const SERVER_INFO = "transfer.sh"
|
||||
|
@ -109,12 +110,20 @@ func ProfileListener(s string) OptionFn {
|
|||
|
||||
func WebPath(s string) OptionFn {
|
||||
return func(srvr *Server) {
|
||||
if s[len(s)-1:len(s)] != "/" {
|
||||
s = s + string(filepath.Separator)
|
||||
}
|
||||
|
||||
srvr.webPath = s
|
||||
}
|
||||
}
|
||||
|
||||
func TempPath(s string) OptionFn {
|
||||
return func(srvr *Server) {
|
||||
if s[len(s)-1:len(s)] != "/" {
|
||||
s = s + string(filepath.Separator)
|
||||
}
|
||||
|
||||
srvr.tempPath = s
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue