1
0
mirror of https://github.com/beego/bee.git synced 2025-06-11 18:40:40 +00:00

Fixes configuration loading since last changes

This commit is contained in:
Faissal Elamraoui
2017-03-12 23:18:38 +00:00
parent 4ef1a0e80e
commit 426237fefe
5 changed files with 83 additions and 33 deletions

View File

@ -11,7 +11,6 @@
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
package run
import (
@ -35,8 +34,11 @@ var CmdRun = &commands.Command{
Run command will supervise the filesystem of the application for any changes, and recompile/restart it.
`,
PreRun: func(cmd *commands.Command, args []string) { version.ShowShortVersionBanner() },
Run: RunApp,
PreRun: func(cmd *commands.Command, args []string) {
version.ShowShortVersionBanner()
config.LoadConfig()
},
Run: RunApp,
}
var (