Former-commit-id: c572c183471871d5bc5f16bb4fa0551ff43a7a1e
This commit is contained in:
kataras 2017-08-12 04:24:53 +03:00
parent 6c6c6b2885
commit 23faae3f43
3 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,8 @@
# ![Logo created by @santoshanand](logo_white_35_24.png) Iris
<!-- # ![Logo created by @santoshanand](logo_white_35_24.png) Iris
-->
<p align="center">
<img src="iris_the_new_machine.gif">
</p>
Iris is a fast, simple and efficient micro web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.

BIN
iris_the_new_machine.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

View File

@ -99,6 +99,11 @@ func checkVersion() {
}
}
if !shouldUpdate {
golog.Infof("Ignore updates? Disable version checker via:\napp.Run(..., iris.WithoutVersionChecker)")
return
}
if shouldUpdate {
goget := strings.Split(updateCmd, " ")
// go get -u github.com/:owner/:repo
@ -111,6 +116,6 @@ func checkVersion() {
return
}
golog.Infof("Update process finished.\nManual restart is required to apply the changes.\n")
golog.Infof("Update process finished.\nManual restart is required to apply the changes...")
}
}