Explorar el Código

panic on fs.abs error

tags/v0.9.0
jimzhan hace 9 años
padre
commit
08cdb179a9
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. +1
    -2
      server.go

+ 1
- 2
server.go Ver fichero

@@ -3,7 +3,6 @@ package rex
import (
"flag"
"fmt"
"log"
"net/http"
"path/filepath"
"runtime"
@@ -118,7 +117,7 @@ func (self *server) FileServer(prefix, dir string) {
fs := http.StripPrefix(prefix, http.FileServer(http.Dir(abs)))
self.mux.PathPrefix(prefix).Handler(fs)
} else {
log.Fatalf("Failed to setup file server: %v", err)
panic("Failed to setup file server: " + err.Error())
}
}


Cargando…
Cancelar
Guardar