main: indicate interactive features
This commit is contained in:
parent
b3d02b9476
commit
9ffbe09d8d
1 changed files with 8 additions and 1 deletions
9
main.go
9
main.go
|
|
@ -44,7 +44,14 @@ func main() {
|
|||
|
||||
mediaDir := args[0]
|
||||
|
||||
log.Printf("This is records %s\n", version)
|
||||
{
|
||||
interactive := ""
|
||||
if util.Interactive() {
|
||||
interactive = ", running with interactive features"
|
||||
}
|
||||
log.Printf("This is records %s%s", version, interactive)
|
||||
}
|
||||
|
||||
log.Println("https://git.baxters.nz/jeremy/records")
|
||||
|
||||
musicindex.Init(mediaDir, *regenerate)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue