Rev | Line | |
---|
[76] | 1 | package aya
|
---|
| 2 |
|
---|
| 3 | import (
|
---|
| 4 | "fmt"
|
---|
| 5 | )
|
---|
| 6 |
|
---|
[78] | 7 | // This function is called by the `aya help` subcommand
|
---|
[76] | 8 | func PrintUsage() {
|
---|
[80] | 9 | fmt.Printf("aya/%v\n", PrintFullVersion())
|
---|
[89] | 10 | fmt.Println("Homepage: https://suzunaan.yakumo.dev/aya/")
|
---|
| 11 | fmt.Println("Repository: https://svn.yakumo.dev/yakumo.izuru/aya")
|
---|
[76] | 12 | fmt.Println("==")
|
---|
| 13 | fmt.Println("build [file] · (Re)build a site or a file in particular")
|
---|
| 14 | fmt.Println("clean · Remove the generated .pub directory")
|
---|
| 15 | fmt.Println("==")
|
---|
| 16 | fmt.Println("For more information please read the manual page")
|
---|
| 17 | fmt.Println("man aya")
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.