From 12cae9be3e90bed092bad660ca32a4b946cdb2c2 Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Thu, 21 Jul 2016 03:20:08 +0300 Subject: [PATCH] Iris run: (rizla) disable the banner on each reload, fix two-times reload on windows --- iris/README.md | 2 +- iris/main.go | 2 +- iris/run.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iris/README.md b/iris/README.md index 08bb7948..96b7271c 100644 --- a/iris/README.md +++ b/iris/README.md @@ -7,7 +7,7 @@ This package is the command line tool for [../](https://github.com/kataras/iris [![Iris installed screen](https://raw.githubusercontent.com/iris-contrib/website/gh-pages/assets/iris_cli_screen2.png)](https://raw.githubusercontent.com/iris-contrib/website/gh-pages/assets/iris_cli_screen2.png) ## Install -Current version: 0.0.8 +Current version: 0.0.9 ```sh go get -u github.com/kataras/iris/iris diff --git a/iris/main.go b/iris/main.go index cc3c7163..c72bd5e1 100644 --- a/iris/main.go +++ b/iris/main.go @@ -10,7 +10,7 @@ import ( const ( // Version of Iris command line tool - Version = "0.0.8" + Version = "0.0.9" ) var ( diff --git a/iris/run.go b/iris/run.go index 2502aa7d..44e9e0f0 100644 --- a/iris/run.go +++ b/iris/run.go @@ -27,7 +27,7 @@ func runAndWatch(flags cli.Flags) error { rizla.Run() */ // or just do that: - + rizla.DefaultDisableProgramRerunOutput = true // we don't want the banner to be shown after the first run rizla.Run(programPath) return nil