1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-23 12:57:05 +00:00

Developers can ignore this update. Replace the template engines with a new cross-framework package (kataras/go-template)

This commit is contained in:
Gerasimos Maropoulos
2016-09-02 06:05:44 +03:00
parent 6163726bc5
commit c38a9b2459
8 changed files with 46 additions and 271 deletions

View File

@@ -9,7 +9,6 @@ import (
"github.com/kataras/cli"
"github.com/kataras/go-fs"
"github.com/kataras/go-installer"
"github.com/kataras/iris/utils"
)
@@ -86,7 +85,7 @@ func create(flags cli.Flags) (err error) {
func downloadPackages() {
errMsg := "\nProblem while downloading the assets from the internet for the first time. Trace: %s"
installedDir, err := installer.Install(PackagesURL, packagesInstallDir, true)
installedDir, err := fs.Install(PackagesURL, packagesInstallDir, true)
if err != nil {
printer.Dangerf(errMsg, err.Error())
return