mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Order the hugo comand flag vars
This commit is contained in:
parent
74539dea87
commit
61197f9f29
1 changed files with 3 additions and 3 deletions
|
@ -120,24 +120,24 @@ var hugoCmdV *cobra.Command
|
||||||
|
|
||||||
// Flags that are to be added to commands.
|
// Flags that are to be added to commands.
|
||||||
var (
|
var (
|
||||||
|
buildWatch bool
|
||||||
canonifyURLs bool
|
canonifyURLs bool
|
||||||
cleanDestination bool
|
cleanDestination bool
|
||||||
disableRobotsTXT bool
|
disableRobotsTXT bool
|
||||||
disableRSS bool
|
disableRSS bool
|
||||||
disableSitemap bool
|
disableSitemap bool
|
||||||
draft bool
|
draft bool
|
||||||
|
forceSync bool
|
||||||
future bool
|
future bool
|
||||||
ignoreCache bool
|
ignoreCache bool
|
||||||
logging bool
|
logging bool
|
||||||
noTimes bool
|
noTimes bool
|
||||||
pluralizeListTitles bool
|
pluralizeListTitles bool
|
||||||
renderToMemory bool // for benchmark testing
|
|
||||||
preserveTaxonomyNames bool
|
preserveTaxonomyNames bool
|
||||||
|
renderToMemory bool // for benchmark testing
|
||||||
uglyURLs bool
|
uglyURLs bool
|
||||||
verbose bool
|
verbose bool
|
||||||
verboseLog bool
|
verboseLog bool
|
||||||
buildWatch bool
|
|
||||||
forceSync bool
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in a new issue