Added some informational messages while download

This commit is contained in:
notzippy@gmail.com
2020-05-18 12:43:00 -07:00
parent 223bd3b7c0
commit 904cfa2995
3 changed files with 15 additions and 7 deletions

View File

@@ -46,9 +46,11 @@ func NewSourceProcessor(revelContainer *model.RevelContainer) *SourceProcessor {
}
func (s *SourceProcessor) parse() (compileError error) {
print("Parsing packages, (may require download if not cached)...")
if compileError = s.addPackages(); compileError != nil {
return
}
println(" Completed")
if compileError = s.addImportMap(); compileError != nil {
return
}