Add `--source` flag back to `hugo new` command
authorAnthony Fok <foka@debian.org>
Wed, 16 Dec 2015 06:41:10 +0000 (23:41 -0700)
committerAnthony Fok <foka@debian.org>
Wed, 16 Dec 2015 07:00:05 +0000 (00:00 -0700)
v0.15 had it, but I removed it inadvertently for 0.16-DEV
in commit 00d04774 in PR #1652.

Also add directory bash-completion for `--source`
for `hugo convert`, `hugo list` and `hugo new`.

See #1624, #1589

commands/convert.go
commands/list.go
commands/new.go

index 9882b0069db3e1848ff314f3a630f9db1f580bd6..4fad9070e73e0ed012935231ceb0fb4bd7d50eeb 100644 (file)
@@ -76,6 +76,7 @@ func init() {
        convertCmd.PersistentFlags().StringVarP(&outputDir, "output", "o", "", "filesystem path to write files to")
        convertCmd.PersistentFlags().StringVarP(&Source, "source", "s", "", "filesystem path to read files relative from")
        convertCmd.PersistentFlags().BoolVar(&unsafe, "unsafe", false, "enable less safe operations, please backup first")
+       convertCmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
 }
 
 func convertContents(mark rune) (err error) {
index 207eb9f11da11f21470146d989837bbebab94fc5..4246b1aa418ead583eb885eada957e3a3674a320 100644 (file)
@@ -26,6 +26,7 @@ func init() {
        listCmd.AddCommand(listDraftsCmd)
        listCmd.AddCommand(listFutureCmd)
        listCmd.PersistentFlags().StringVarP(&Source, "source", "s", "", "filesystem path to read files relative from")
+       listCmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
 }
 
 var listCmd = &cobra.Command{
index d465e83ffdb60ba7f3da3a79f6e44cc3824a0105..0eb87dac3673347c10744adc05757c272022e3a3 100644 (file)
@@ -41,6 +41,8 @@ func init() {
        newSiteCmd.Flags().Bool("force", false, "Init inside non-empty directory")
        newCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "frontmatter format")
        newCmd.Flags().StringVarP(&contentType, "kind", "k", "", "Content type to create")
+       newCmd.PersistentFlags().StringVarP(&Source, "source", "s", "", "filesystem path to read files relative from")
+       newCmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
        newCmd.AddCommand(newSiteCmd)
        newCmd.AddCommand(newThemeCmd)
 }