diff options
author | Anthony Fok <[email protected]> | 2015-12-15 23:41:10 -0700 |
---|---|---|
committer | Anthony Fok <[email protected]> | 2015-12-16 00:00:05 -0700 |
commit | c1e134f1c28800e5c12126c731cbb5c257aa0c6a (patch) | |
tree | 9a33631a1f12fd3fd85d3e19a1d2c00cf6ee124d /commands/convert.go | |
parent | 41a3af1a29deb979d24e12d56dd3ef52073d580d (diff) | |
download | hugo-c1e134f1c28800e5c12126c731cbb5c257aa0c6a.tar.gz hugo-c1e134f1c28800e5c12126c731cbb5c257aa0c6a.zip |
Add `--source` flag back to `hugo new` command
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
Diffstat (limited to 'commands/convert.go')
-rw-r--r-- | commands/convert.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/convert.go b/commands/convert.go index 9882b0069..4fad9070e 100644 --- a/commands/convert.go +++ b/commands/convert.go @@ -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) { |