mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
update filepath Joins
This commit is contained in:
parent
e9b13f961b
commit
e7369b17b5
@ -53,10 +53,10 @@ func Install() string {
|
||||
os.Exit(-1)
|
||||
}
|
||||
|
||||
caddy := filepath.Clean(usr.HomeDir + "/.caddy/")
|
||||
bin := filepath.Clean(caddy + "/bin")
|
||||
temp := filepath.Clean(caddy + "/temp")
|
||||
hugo := filepath.Clean(bin + "/hugo")
|
||||
caddy := filepath.Join(usr.HomeDir, ".caddy")
|
||||
bin := filepath.Join(caddy, "bin")
|
||||
temp := filepath.Join(caddy, "temp")
|
||||
hugo := filepath.Join(bin, "hugo")
|
||||
|
||||
switch runtime.GOOS {
|
||||
case "darwin":
|
||||
@ -84,7 +84,7 @@ func Install() string {
|
||||
err = os.Mkdir(bin, 0774)
|
||||
err = os.Mkdir(temp, 0774)
|
||||
|
||||
tempfile := temp + "/" + filename
|
||||
tempfile := filepath.Join(temp, filename)
|
||||
|
||||
fmt.Print("Downloading Hugo from GitHub releases... ")
|
||||
|
||||
@ -151,7 +151,7 @@ func Install() string {
|
||||
|
||||
fmt.Println("done.")
|
||||
|
||||
tempfiles = append(tempfiles, bin+"/README.md", bin+"/LICENSE.md")
|
||||
tempfiles = append(tempfiles, filepath.Join(bin, "README.md"), filepath.Join(bin, "LICENSE.md"))
|
||||
clean()
|
||||
|
||||
ftorename := bin + "/"
|
||||
|
Loading…
Reference in New Issue
Block a user