fix: update text

This commit is contained in:
Lea Anthony
2019-10-24 15:37:59 +11:00
parent 1d785d7d40
commit 8c96bba1f9

View File

@@ -57,6 +57,7 @@ func init() {
message := "Migrate Project"
logger.PrintSmallBanner(message)
logger.Red("WARNING: This is an experimental command. Ensure you have backups of your project!")
logger.Red("It currently only supports npm based projects.")
fmt.Println()
// Check project directory
@@ -100,6 +101,8 @@ func init() {
return err
}
// TODO: Check if we are using legacy js runtime
// Operations
logger.Yellow("Operations to perform:")
@@ -157,6 +160,8 @@ func init() {
return err
}
fmt.Println()
logger.Yellow("Migration complete! Check project by running `wails build`.")
return nil
})
}