Last active
February 10, 2016 11:39
-
-
Save njpatel/5f19f0c39c1c4bf26a0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func (installer BkInstaller) Run() ) (err error) { | |
installer.log("Start installer bk") | |
err = installer.createTables() | |
if err == nil { | |
err = installer.stateIndex() | |
if err == nil { | |
err = installer.stateRelations() | |
} | |
} | |
return err | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment